/* Styles pour la bannière de notification fixe */
.notification-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.notification-banner[hidden] {
    display: block;
    transform: translateY(100%);
}

.notification-banner.visible {
    transform: translateY(0);
}

.notification-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

/* Styles pour les différents types de notifications */
.notification-banner.success .notification-content {
    background: var(--success-bg, #e6ffed);
    border: 1px solid var(--success-border, #8bd39b);
    color: var(--success-text, #0b6b2a);
}

.notification-banner.error .notification-content {
    background: var(--error-bg, #ffecec);
    border: 1px solid var(--error-border, #f5a6a6);
    color: var(--error-text, #a12a2a);
}

.notification-message {
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    padding: 0.25rem;
    cursor: pointer;
    color: currentColor;
    opacity: 0.7;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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