/* ── Toast notifications ─────────────────────────────────────
   Vanilla JS replacement for toastr. Companion to toast.js.
   No jQuery required.
   ────────────────────────────────────────────────────────── */

#toast-container {
  position:       fixed;
  top:            16px;
  right:          16px;
  z-index:        99999;
  display:        flex;
  flex-direction: column;
  gap:            8px;
  pointer-events: none;
}

.toast {
  min-width:   240px;
  max-width:   340px;
  padding:     11px 16px;
  border-radius: 6px;
  font-size:   13px;
  font-weight: 500;
  line-height: 1.45;
  color:       #fff;
  box-shadow:  0 4px 14px rgba(0, 0, 0, 0.22);
  cursor:      pointer;
  pointer-events: auto;

  opacity:   0;
  transform: translateX(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.toast-visible {
  opacity:   1;
  transform: translateX(0);
}

.toast-error   { background: #c0392b; }
.toast-success { background: #27ae60; }
.toast-warning { background: #d35400; }
.toast-info    { background: #2471a3; }
