/* mobile-fixes.css — small, rebuild-safe mobile polish (loaded after tailwind.css on every page) */

/* Prevent iOS Safari auto-zoom on input focus.
   Any form control under 16px triggers a zoom-jump on tap; 16px stops it.
   Scoped to phone widths so desktop styling (text-sm inputs) is untouched. */
@media (max-width: 767px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}
