/*

 */

 /* ensure the container stays slightly inset from the edges and stacks nicely */
.toast-container {
  top: 1rem !important;
  right: 1rem !important;
  position: fixed !important;
  z-index: 11000 !important;
  max-width: 500px !important; /* optional - limit toast width */
}

/* optional spacing between stacked toasts */
.toast + .toast {
  margin-top: 0.5rem;
}

/* if you prefer the close button vertically centered */
.toast-body .btn-close {
  margin-top: -0.25rem;
}
