#map-container {
    position: relative;
    width: 100%;
    height: 100vh;
}

#map {
    width: 100%;
    height: 100%;
}

#overlayCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;  /* Let the map receive pointer events */
}

#outer {
    position: relative;
    display: grid;

}

#controls {
    border-radius: 10px;
    padding: 10px;
    float: left;
    position: absolute;
    margin: 5px;
    color: white;
    background-color: #121212;
}