/* Tablet scaling — iPads and similar mid-size screens */
/* Scales up the UI so it doesn't feel tiny on tablets */
/* No effect on phones (<768px) or large desktops (>1024px) */
@media (min-width: 768px) and (max-width: 1199px) {
  html {
    zoom: 1.35;
  }
}
