/* ============================================================
   bb-ios-fixes.css  –  iOS Safari Global Fixes
   Shared across all basketball pages. Do not duplicate.
   ============================================================ */

/* ---------- Viewport & Scroll ---------- */
html {
    height: 100%;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    overscroll-behavior: contain;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---------- Tap & Touch ---------- */
a,
button,
input,
select,
textarea,
[role="button"],
[onclick] {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

/* ---------- Z-Index Scale ---------- */
/*
    headers   = 100
    bottom-nav = 200
    dropdowns = 500
    modals    = 2000
    overlays  = 3000
    (reference only — applied in bb-header.css and page CSS)
*/

/* ---------- Safe Area for Bottom Nav ---------- */
.bottom-nav {
    padding-bottom: max(20px, env(safe-area-inset-bottom));
}
