/* Local fallback for Paystack button styles - minimal safe defaults */
.paystack-button, .paystack-btn, .paystack-ui-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: #2563EB;
  color: #fff;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
}
.paystack-button:hover, .paystack-btn:hover, .paystack-ui-button:hover {
  background: #1D4ED8;
}
.paystack-button.secondary, .paystack-btn.secondary { background: #F3F4F6; color: #111; border: 1px solid #E5E7EB }
/* Minimal responsive tweak */
@media (max-width: 640px) {
  .paystack-button, .paystack-btn, .paystack-ui-button { width: 100%; padding: 12px 16px; }
}
