html, body {
  overscroll-behavior: contain;
  touch-action: manipulation;
}

/* Prevent iOS zoom by ensuring minimum font size */

*[contenteditable="true"], input, textarea {
  font-size: 16px;
}

/* Body lock class to prevent scrolling while focused */

body.input-lock {
  overflow: hidden;
  position: fixed;
  width: 100%;
  overscroll-behavior: contain;
}

