/* fade-custom pentru toast animat */
.toast.fade-custom {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.toast.fade-custom.show {
    opacity: 1;
    transform: translateY(0);
}
