/* Shared mobile browser safeguards. Keep this loaded after page-specific CSS. */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Allow normal one-finger panning, while excluding pinch-zoom where supported. */
body {
  touch-action: pan-x pan-y;
}

/* The manipulation alias suppresses double-tap zoom without disabling taps. */
button,
a,
input,
select,
textarea,
[role="button"],
.weather-hourly-item,
.weather-daily-item,
.weather-setup-card {
  touch-action: manipulation;
}

@media (max-width: 767px) {
  input,
  select,
  textarea {
    font-size: 16px;
    line-height: 1.25;
  }
}
