/* ── Toast de notificación ─────────────────────────── */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  min-width: 260px;
  max-width: 420px;
  border-left: 4px solid #00b4d8;
  transform: translateX(130%);
  transition: transform 0.3s ease;
}
.toast.show   { transform: translateX(0); }
.toast.t-ok   { border-left-color: #059669; }
.toast.t-err  { border-left-color: #dc2626; }
.toast-icon   { font-size: 18px; flex-shrink: 0; }
.toast-msg    { font-size: 13px; color: #1e293b; font-weight: 500; line-height: 1.4; }
