/* === Toasts === */
#toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
}
.toast {
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  background: #334155; /* neutral */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  opacity: 0.95;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.toast-success {
  background: #16a34a;
}
.toast-error {
  background: #dc2626;
}
.toast-info {
  background: #2563eb;
}
.toast.fade-out {
  opacity: 0;
  transform: translateY(20px);
}
