/* Prevent pinch/double-tap zoom from breaking layout */
html {
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  touch-action: manipulation;
}

input,
select,
textarea,
button {
  font-size: 16px;
  touch-action: manipulation;
}

/* Remove blue tap highlight on mobile */
* {
  -webkit-tap-highlight-color: transparent;
}

button,
a,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  appearance: none;
}

button:active,
a:active,
[role="button"]:active {
  outline: none;
  -webkit-outline: none;
}
