/* ── Modal Mobile Scroll Fix ── */
/* Adds scrollability for tall forms on small screens */

.modal {
  max-height: 90vh;
  overflow-y: auto;
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .modal {
    max-height: 95vh;
    padding: 14px;
  }
}

/* Sticky pay button at bottom of scrollable modal */
.btn-pay {
  position: sticky;
  bottom: 0;
  z-index: 2;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
}
