/**{
    outline: 1px solid rgba(255, 0, 0, 0.5);
    background-color: rgba(0, 255, 0, 0.05);
}*/

html, body{
    margin: 0;
    padding: 0;
    height: calc(100svh - 20px);
    width: calc(100vw - 20px);
}

#container {
    display: flex;
    gap: 5px;
    width: 100%;
    height: 100%;
    margin: 5px;

}
    .mapLabel-wrapper{
        flex: 1;
        display: flex;
        flex-direction: column;
    }
        .map-wrapper {
            flex: 1;    
            border: 4px solid #777;
            border-radius: 4px;
            box-sizing: border-box;
            transition: border-color 0.25;
            position: relative;
            display: inline-block;
        }
            #map1-wrapper {
                border-color: #2196f3;
            }

            #map2-wrapper {
                border-color: #4caf56;
            }

            .map-inner {
                width: 100%;
                height: 100%;
            }

            .centerMarker{
                position: absolute;
                top: 50%;
                left: 50%;
                width: 30px;
                height: 30px;
                margin-top: -15px;
                margin-left: -15px;
                pointer-events: none;
                z-index: 10;
            }

        .label-wrapper{
            flex: 0;
            font-size: 12px;
            line-height: 15px;
        }

    #middle-wrapper {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        width: 120px;
        max-height: 100%;
        overflow: hidden;
    }
        .banner{
            flex: 0;
            height: 300px;
            top: 0;
        }
        .banner img{
            display: block;
            width: 120px;
        }

        .square-area{
            flex: 0;
            width: 120px;
            text-align: center;
            margin: auto;
        }

        #syncToggleButton {
            font-size: 48px;
            cursor: pointer;
        }

        #poiToggleButton {
            font-size: 36px;
            cursor: pointer;
        }

        #shareButton{
            font-size: 36px;
            cursor: pointer;
        }

        .material-symbols-outlined {
            font-variation-settings:
            'FILL' 10,
            'wght' 400,
            'GRAD' 0,
            'opsz' 24;
            vertical-align: middle;
        }

.crosshair {
    position: absolute;
    background-color: red;
    pointer-events: none;
    z-index: 10;
    display: none;
}

.crosshair.horizontal {
    left: 0;
    height: 1px;
    width: 100%;
}

.crosshair.vertical {
    top: 0;
    width: 1px;
    height: 100%;
}