﻿/* ✓ Use System Font Stack */
/* ✓ Disable pull-to-refresh */
body {
    /*    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";*/
    overscroll-behavior-y: contain;
    height: 100vh;
}

/* ✓ Add Safe Areas Container */
#root {
    /* Using safe areas with fallback values */
    padding: 5px 5px 0 0;
    padding: env(safe-area-inset-top, 5px) env(safe-area-inset-right, 5px) env(safe-area-inset-bottom, 5px) env(safe-area-inset-left, 5px) !important;
}

/* ✓ Disable touch-callout */
a {
    -webkit-touch-callout: none;
}

/* ✓ Avoid Content Selection */
.element, button, label {
    user-select: none;
    -webkit-user-select: none;
}

/* ✓ Tap Highlight color */
button {
    -webkit-tap-highlight-color: transparent;
}

link[rel="manifest"] {
    --pwacompat-splash-font: 24px Verdana;
}
