/* Notification Animation Keyframes */
@keyframes slide-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

/* Notification Animation Classes */
.notification-slide-in {
    animation: slide-in 0.5s forwards;
}

.notification-fade-in {
    animation: fade-in 0.5s forwards;
}

.notification-bounce {
    animation: bounce 1s forwards;
}

/* Styling for notification icons */
.notification-icon {
    margin-right: 10px;
    font-size: 1.5em;
}

.icon-chat {
    color: #007bff; /* Blue */
}

.icon-task {
    color: #ffc107; /* Yellow */
}

.icon-default {
    color: #6c757d; /* Gray */
}
