/* iOS WebView Fixes - Safe, industry-standard approach */
/* Only targets specific behaviors without affecting layout */

/* 1. Prevent double-tap zoom on interactive elements */
button,
a,
input,
select,
textarea,
[role="button"],
.btn,
.clickable {
    touch-action: manipulation;
}

/* 2. Prevent rubber-band/overscroll bounce effect */
html,
body {
    overscroll-behavior: none;
}

/* 3. Fix text size adjustment on iOS */
html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}