/* Mobile Safari scroll correction for the static FTP/PHP build.
   The hidden SMS dialog remains in the DOM, so the page must be unlocked
   until that dialog is actually opened. */
html {
  min-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body {
  min-height: 100%;
}

body:has(#sms-modal[hidden]) {
  overflow-y: auto;
}
