/* Fix iOS keyboard viewport issues */
html, body {
  height: 100%;
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Prevent iOS Safari from scrolling the page when keyboard appears */
body {
  overscroll-behavior: none;
  -webkit-overflow-scrolling: touch;
}

/* Fix for Flutter chat input on iOS */
#root, flt-glass-pane {
  height: 100vh;
  height: 100dvh; /* Use dynamic viewport height */
}
