/* =========================
   TOASTS
========================= */
#toast-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.toast {
  min-width: 250px;
  max-width: 350px;
  padding: 12px 14px;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

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

.toast.success { background: var(--color-green); }
.toast.error { background: var(--color-red); }