 /* Basic styles */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', system-ui, sans-serif;
    overflow: hidden;
    background-color: #cde2e5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    touch-action: manipulation;
}
#map {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1; /* Base map layer */
    background-color: #eee; /* Light gray background for map loading */
}

#update-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffc107;
    color: #000;
    text-align: center;
    padding: 10px;
    z-index: 9999;
}

#reload-button {
    margin-left: 10px;
    cursor: pointer;
}

/* Screen reader only class */
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-content: nowrap; border-width: 0;
}

/* Styles for obscuring content */
.obscured-content {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
    opacity: 0.6;
}

#bottom-nav-bar {
    padding-bottom: env(safe-area-inset-bottom);
}
