/* ── Donation button ─────────────────────────────────────────────────────── */
.riseact-donate-btn {
  background-color: var(--primary-color, #395487);
  padding: 12px 24px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  width: fit-content;
  margin-top: 12px;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.riseact-donate-btn:hover {
  opacity: 0.8;
}

/* ── Payment success modal ───────────────────────────────────────────────── */
#payment-success-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.payment-modal-box {
  background: #fff;
  border-radius: 8px;
  padding: 40px 32px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.payment-modal-icon {
  font-size: 52px;
  margin-bottom: 16px;
}

.payment-modal-box h3 {
  color: var(--primary-color, #395487);
  font-size: 22px;
  margin-bottom: 10px;
}

.payment-modal-box p {
  color: #5e5e5e;
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.payment-modal-close {
  background: var(--primary-color, #395487);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
}

.payment-modal-close:hover {
  opacity: 0.8;
}
