html,
body {
    font-family: 'Outfit', sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

/* Control buttons (Ported from 2D Map) */
.control-btn {
    width: 44px;
    height: 44px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.55);
    /* white at .55 when inactive */
    color: #111827;
    /* default icon/text color */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.control-btn+.control-btn {
    margin-top: 8px;
}

.control-btn .material-symbols-outlined {
    font-size: 20px;
    color: inherit;
}

.control-btn.active {
    background: rgba(255, 255, 255, 0.85);
    /* white at .85 when active */
    color: #111827;
    box-shadow: 0 6px 18px rgba(29, 78, 216, 0.12);
}







@media (max-width: 768px) {


    /* Keep buttons same size as desktop for better proportions */
    /* .playback-btn {
        width: 60px;
        height: 60px;
        font-size: 36px;
    } */
}

/* Container Layouts */
#left-controls-container {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
}

#ui-controls-container {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

#map-logo {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1200;
    /* pointer-events: none; /* non-interactive */
    opacity: 0.65;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
}

#map-logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

@media (min-width: 768px) {
    #map-logo img {
        max-height: 60px;
    }
}

/* Custom Range Slider Styles */
input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    margin-top: -4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

input[type=range]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: #2563eb;
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

input[type=range]::-moz-range-track {
    width: 100%;
    height: 4px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

input[type=range]:focus {
    outline: none;
}