/* Global no-focus-zoom guard v152 - 2026-05-24
   Keeps data/text entry controls at a mobile-safe font size so iOS/Android browsers
   do not auto-zoom when a cashier/vendor/admin taps into a field. */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

input,
textarea,
select,
button,
[contenteditable="true"],
[contenteditable=""],
[role="textbox"] {
  font-size: 16px !important;
}

input[type="checkbox"],
input[type="radio"],
input[type="range"],
input[type="color"],
input[type="file"] {
  font-size: initial !important;
}

input,
textarea,
select,
[contenteditable="true"],
[contenteditable=""],
[role="textbox"] {
  touch-action: manipulation;
}

@media (max-width: 900px) {
  input,
  textarea,
  select,
  button,
  [contenteditable="true"],
  [contenteditable=""],
  [role="textbox"] {
    font-size: 16px !important;
  }
}
