/* Toast/Toastr color overrides – one place to tune across the app */

/* Strengthen base toast visuals */
.toast {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25) !important;
}

/* Toastr types */
.toast-success { background-color: #157347 !important; color: #fff !important; }
.toast-error   { background-color: #b02a37 !important; color: #fff !important; }
.toast-info    { background-color: #0d6efd !important; color: #fff !important; }
.toast-warning { background-color: #fd7e14 !important; color: #212529 !important; }

/* Bootstrap 5 toast helpers used in pages (e.g., text-bg-success) */
.toast.text-bg-success { background-color: #157347 !important; color: #fff !important; }
.toast.text-bg-danger  { background-color: #b02a37 !important; color: #fff !important; }
.toast.text-bg-info    { background-color: #0d6efd !important; color: #fff !important; }
.toast.text-bg-warning { background-color: #ffc107 !important; color: #212529 !important; }

/* Ensure toast text is readable */
.toast .toast-body { color: inherit !important; }


