.toast-wrap {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 360px;
}

.toast {
  border-radius: 12px;
  padding: 10px 12px;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: toast-in 180ms ease-out;
  font-size: 0.9rem;
}

.toast.info {
  background: #0f766e;
}

.toast.error {
  background: #9f1239;
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
