/* Styles pour les notifications */
.notification-dropdown {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.notification-item {
    padding: 10px 15px !important;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.notification-item:hover {
    background-color: #f8f9fa !important;
}

.notification-item.unread {
    background-color: #e3f2fd !important;
    border-left: 3px solid #2196f3;
}

.notification-title {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 4px;
}

.notification-message {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 4px;
}

.notification-time {
    font-size: 11px;
}

.navbar-badge {
    font-size: 0.75rem;
    position: absolute;
    top: 8px;
    right: 6px;
}

/* Animations pour les nouvelles notifications */
@keyframes notificationPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.notification-pulse {
    animation: notificationPulse 1s ease-in-out infinite;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .notification-dropdown {
        width: 280px !important;
        left: -200px !important;
    }
}