/* AECX mobile scrolling compatibility patch, 2026-07-28. */
html.f2c-app {
  height: 100% !important;
  min-height: 100% !important;
  overflow: hidden !important;
}

html.f2c-app body {
  height: 100% !important;
  min-height: 100% !important;
  overflow: hidden !important;
  touch-action: pan-y !important;
}

html.f2c-app #app {
  position: relative !important;
  height: 100vh !important;
  height: 100dvh !important;
  min-height: 0 !important;
  overflow-x: clip !important;
  overflow-y: auto !important;
  overscroll-behavior-y: contain;
  touch-action: pan-y !important;
  -webkit-overflow-scrolling: touch;
}

html.f2c-app .edit-page {
  min-height: 100vh !important;
  min-height: 100dvh !important;
  padding-bottom: calc(112px + env(safe-area-inset-bottom)) !important;
}

html.f2c-app .pay-popup {
  max-height: calc(100vh - 32px) !important;
  max-height: calc(100dvh - 32px) !important;
  overflow-y: auto !important;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}
