/* iPhone zooms focused controls with text smaller than 16px.
   Apply before focus, including fields added by React and modal dialogs.
   Keep browser pinch zoom available and desktop typography unchanged. */
@media (max-width: 1024px), (any-pointer: coarse) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="color"]):not([type="file"]):not([type="hidden"]):not([type="button"]):not([type="submit"]):not([type="reset"]),
  textarea,
  select,
  [contenteditable=""],
  [contenteditable="true"],
  [contenteditable="plaintext-only"] {
    /* Override small utility classes and inline sizes in existing forms. */
    font-size: max(16px, 1rem) !important;
  }
}
