/* Prevent zooming styles for specific pages */
* {
    touch-action: pan-x pan-y;
}

html, body {
    touch-action: pan-x pan-y;
}

/* Prevent double-tap zoom highlight */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Ensure no zoom on input focus */
input, textarea, select {
    font-size: 16px !important;
}