/* frontend/css/components/toast.css */
/* ═══════════════════════════════════════════════════════════════════════════
   Plateby — Toast Notifications
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Toast ────────────────────────────────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3000;
}
.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--text-1);
  color: #fff;
  font-size: 14px;
  border: var(--ink-width) solid var(--ink);
  box-shadow: var(--sketch-shadow);
  opacity: 0;
  transform: translateX(20px);
  transition: all 300ms ease;
  max-width: 320px;
}
.toast-visible { opacity: 1; transform: none; }
.toast-icon { font-size: 16px; font-weight: 700; }
.toast-success .toast-icon { color: #69f0ae; }
.toast-error { background: var(--danger); }
.toast-info .toast-icon { color: var(--accent); }
