/* Force Moodle toasts to appear in the upper-right corner, above headers. */
.toast-wrapper {
  position: fixed !important;
  top: 0.5rem !important; /* little offset from top */
  right: 0.5rem !important; /* default LTR */
  left: auto !important;
  bottom: auto !important;
  width: auto;
  max-width: 420px; /* a bit wider than default */
  z-index: 1090 !important; /* above navbars and modals backdrop (Bootstrap modal is 1050)*/
}
.toast-wrapper > :first-child { margin-top: 0 !important; }

/* Handle RTL layouts: place on the left if RTL */
[dir="rtl"] .toast-wrapper {
  right: auto !important;
  left: 0.5rem !important;
}
