/* Notifications - Affichage sous header */

.notification-banner {
    width: 100%;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.notification-banner.fade-out {
    display: none;
}

/* Succès */
.notification-banner.success {
    background-color: #f0f9ff;
}

.notification-banner.success .notification-text {
    color: #1e293b;
}

/* Erreur */
.notification-banner.error {
    background-color: #f0f9ff;
}

.notification-banner.error .notification-text {
    color: #1e293b;
}

/* Avertissement */
.notification-banner.warning {
    background-color: #f0f9ff;
}

.notification-banner.warning .notification-text {
    color: #1e293b;
}

/* Info */
.notification-banner.info {
    background-color: #f0f9ff;
}

.notification-banner.info .notification-text {
    color: #1e293b;
}

/* Texte */
.notification-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

/* Bouton fermer */
.notification-close {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.notification-close:hover {
    opacity: 1;
}

.notification-close svg {
    width: 16px;
    height: 16px;
}

/* Conteneur des notifications */
.notifications-container {
    width: 100%;
    background-color: #fff;
}

.notifications-wrapper {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 640px) {
    .notifications-wrapper {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .notifications-wrapper {
        padding: 0 32px;
    }
}
