/* =========================
   🔥 TOAST
========================= */

#toast-root {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

.toast {
  padding: 12px 16px;
  background: #fff;
  border: 1px solid #e5e5e5;
  font-size: 13px;
  opacity: 0;
  transform: translateY(-8px);
  transition: 0.25s;

  max-width: 320px;
  text-align: center;
  border-radius: 6px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}