/* Global Mobile Resets */

html,
body {
    height: 100%;
    /* Fallback */
    height: 100dvh;
    margin: 0;
    padding: 0;
    overflow: auto;
    /* Allow body scroll as fallback */
    overscroll-behavior: none;
    /* Prevent bounce on body */
    -webkit-tap-highlight-color: transparent;
}

#root {
    height: 100%;
    isolation: isolate;
}

/* Ensure smooth scrolling in scrollable areas */
.scroll-smooth {
    -webkit-overflow-scrolling: touch;
}