/* ============================================
   CORESYSTEM - NOTIFICATIONS.CSS
   ============================================
   Styles pour le module de gestion des notifications
   Contient les styles pour le conteneur de notifications,
   le dropdown, les items de notification et les badges
   ============================================ */

/* Styles pour les notifications */
.notifications-container {
    position: relative;
}

/* Les styles du bouton notifications ont été déplacés dans coreSystem/interface.css */

/* Les styles du dropdown notifications ont été déplacés dans coreSystem/interface.css */

.notifications-dropdown::-webkit-scrollbar {
    width: 8px;
}

.notifications-dropdown::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.notifications-dropdown::-webkit-scrollbar-thumb {
    background: rgba(169, 186, 201, 0.5);
    border-radius: 4px;
}

.notifications-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(169, 186, 201, 0.7);
}

.notification-item {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(116, 157, 145, 0.15);
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.notification-item:hover {
    background: rgba(0, 232, 158, 0.08);
}

.notification-item.unread {
    background: rgba(0, 232, 158, 0.12);
    border-left: 3px solid #00e89e;
}

.notification-item.read {
    opacity: 0.6;
}

.notification-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.notification-content {
    flex: 1;
    min-width: 0;
}

.notification-title {
    color: #C5D4E0;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
    font-family: 'Source Code Pro', monospace;
}

.notification-message {
    color: #A9BAC9;
    font-size: 12px;
    line-height: 1.4;
}

/* Les styles du badge et bouton de lecture ont été déplacés dans coreSystem/interface.css */



