/* Dojo Go PWA — mobile viewport and scroll fixes for iOS Safari */

html,
body {
  min-height: 100dvh;
  height: auto;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#root {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  flex: 1;
}

[data-auth-scroll='true'] {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
