/* ============================================ */
/* Base Styles - Body, Typography, Layout      */
/* ============================================ */

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    display: flex;
    flex-direction: column;
    height: 100vh;
    background-color: var(--background-color);
    color: var(--text-color);
    overflow: hidden;
}

/* Map Container */
#map-container {
    position: relative;
    flex-grow: 1;
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

#map {
    height: 100%;
    width: 100%;
    z-index: 0;
}

/* Map Overlay */
.map-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1001;
    display: none;
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
}

.map-overlay.active {
    display: block;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}