/**
 * Bootstrap 5 sets .toast { opacity: 0 } until .show — toastr.js needs .show while visible.
 * Do NOT force display/opacity on all toasts or they never auto-dismiss.
 */
#toast-container {
    position: fixed !important;
    z-index: 99999 !important;
}

#toast-container > div {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

#toast-container > .toast.show,
#toast-container > div[class*="toast-"].show {
    display: block !important;
    opacity: 1 !important;
}
