html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

body {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
}

#map {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #FFFFFF;
}
#information {
    position: relative;
    float: right;
    padding: 0 5px;
    background: #FFFFFF;
}
#scale-container {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: #FF00FF;
}
.show-scale #scale-container {
    display: block !important;
}
#scale {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}


.show-grid #showGrid,
.show-scale #showScale {
    background-color: rgba(76,175,80,0.5);
}

#developerToggle {
    float: right;
    height: 10px;
    width: 10px;
}

.label {
    text-decoration: none;
    color: transparent;
    position: relative;
    background: transparent;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding: 5px;
}

.hiddenLayer {
    text-decoration: none;
    background: rgba(0,0,0,0.2);
    position: relative;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.25);
    padding: 5px;
}

#locationFormModal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

#locationForm {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: fit-content;
}

.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}