/* =================================================
   TRUCKAID — FIXES
   Purpose:
   - Improve font rendering on mobile browsers
   - Prevent iOS auto-zoom / blurry form fields
   - Keep fixes isolated from core styling
================================================= */

/* Text sharpness (iOS / mobile Safari) */
html,
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure textarea text is crisp + prevent mobile zoom */
textarea {
  font-size: 16px !important;
}
