/* Styles pour le système de notifications */

#notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

/* Modal de confirmation */
.notification-modal-backdrop {
    background-color: rgba(0,0,0,0.5);
}

#notification-container .alert {
    min-width: 300px;
    animation: slideInRight 0.3s ease-out;
    border: none;
    border-radius: 10px;
}

#notification-container .btn-close {
    opacity: 0.8;
}

#notification-container .btn-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.notification-slideout {
    animation: slideOutRight 0.3s ease-in;
}