/* #toast-container > div {
    opacity: 1 !important;
} */

/* Pour les animations */
.toast-enter, .toast-leave-to {
    opacity: 0;
}

.toast-enter-active, .toast-leave-active {
    transition: opacity .3s ease;
}

/* Styles personnalisés pour chaque type de toast */
.toast-success {
    background-color: #51A351 !important;
}

.toast-error {
    background-color: #BD362F !important;
}

.toast-info {
    background-color: #2F96B4 !important;
}

.toast-warning {
    background-color: #F89406 !important;
} 