/* iOS PWA Touch Fix - Minimal interference with Flutter */
html, body {
  /* Prevent text size adjustment on iOS */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  
  /* Remove default margins */
  margin: 0;
  padding: 0;
  
  /* Prevent iOS bounce scroll */
  overscroll-behavior: none;
  overflow: hidden;
}

/* Fix iOS PWA touch events */
body {
  /* Let Flutter handle touch events naturally */
  width: 100%;
  height: 100%;
}

/* Ensure Flutter app container works correctly */
flt-glass-pane {
  /* Allow all touch interactions */
  touch-action: auto !important;
}

