html, body {
    overflow: auto; /* Allow scrolling */
    touch-action: pan-x pan-y; /* Prevent zooming and panning */
}

/* For iOS devices */
@media (pointer: coarse) {
    html {
        touch-action: manipulation; /* Prevent zooming */
    }
}

html {
    touch-action: auto; /* Allow default touch actions including scrolling */
}