.comment-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff9800;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    z-index: 9999;
    cursor: pointer;
    animation: fadeIn 0.3s ease-in-out;
    max-width: 300px;
    word-wrap: break-word;
}

.comment-notification a {
    color: white;
    text-decoration: none;
}

.comment-notification a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
