/* Flutter Web Mobile Keyboard Fix
 * Fixes Android Chrome keyboard resize issue where white space
 * remains after keyboard dismissal.
 */

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Prevent iOS rubber-band scrolling */
body {
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}

/* Ensure Flutter canvas takes full viewport */
#flutter_host,
flt-glass-pane {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
