/* Notification système (globale) */
#alert-notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    height:56px;
    border-radius:8px;
    transform: translateX(-50%);
    background: #F8B500;
    color: #495057;
    padding: 16px 24px;
    border-radius: 16px;
    transition: bottom 0.4s ease;
    z-index: 10001;
    white-space: nowrap;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 90vw;
    text-align: center;
}

#alert-notification.show { bottom: 30px; }

#alert-notification span.notification-icon {
    padding:10px;
    color:#fff;
    border-radius:50%;
}
#alert-notification.success span.notification-icon {
    background: #50DD6B;
}
#alert-notification.error span.notification-icon {
    background: #FE5759;
}
#alert-notification.info span.notification-icon {
    background: #F8B500;
}
#alert-notification.success {
    background: #F1F9F5;
    border:1px solid #50DD6B;
}

#alert-notification.error {
    background: #FCEFEA;
    border:1px solid #FE5759;
}

/* Info (orange) */
#alert-notification.info {
    background: #FFF7E6; /* light orange background */
    border: 1px solid #F8B500;
    color: #8A6D3B; /* readable on light orange */
}

#alert-notification .notification-icon {
    font-size: 18px;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 18;
}

@media (max-width: 768px) {
    #alert-notification {
        left: 20px;
        right: 20px;
        transform: none;
        max-width: none;
        white-space: normal;
        text-align: left;
    }
}


