/* Map container and placement styles */

#map_place {
    width: 100vw;
    height: 85vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: start;
    /* z-index: 1; */
}

#map {
    /* Map dimensions calculated by JavaScript for square cells - container provides available space */
    position: relative;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
}