/* Request feedback op kaart */
.request-success {
  border-color: rgba(179, 0, 255, 0.8) !important;
  background: rgba(179, 0, 255, 0.12) !important;

  box-shadow:
    0 0 0 2px rgba(179, 0, 255, 0.35),
    0 0 22px rgba(179, 0, 255, 0.45),
    0 0 40px rgba(94, 0, 94, 0.35);

  transform: translateY(-1px);

  animation: requestSuccessPulse 0.9s ease;
}

/* Knop success state */
.request-btn.success {
  background: linear-gradient(135deg, #16a34a, #22c55e);
}
.request-hit-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, #5E005E, #8a007f);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.request-hit-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
  /* Verzoek-knop */
    .btn-verzoek { background-color: #5E005E; }
    .btn-verzoek:hover { background-color: #4A004A; }