/**
 * PWA yerel uygulama hissi — mobil dokunmatik ve scroll
 * (Next.js globals.css karşılığı)
 */
html,
body {
    overscroll-behavior-y: contain;
}

body {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

a,
button,
[role='button'],
input,
select,
textarea,
label,
.fi-btn,
.fi-ac-btn-action {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
