#toast {
  position: fixed;
  top: 20px;
  right: 20px;
  min-width: 260px;
  max-width: 320px;
  padding: 14px 18px;
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.35s ease;
  z-index: 9999;
}

.toast-show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.toast-success {
  background: #16a34a;
}

.toast-error {
  background: #dc2626;
}