/* Modal Scroll Fix - Ensure native scrolling works in modals */

/* When modal is open, prevent body scroll */
body.modal-open {
  overflow: hidden !important;
}

/* Native scrolling for modals */
.modal-overlay,
.modal-card {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

