body {
    padding: 0;
    margin: 0;
}
html, body, #mapid{
    height: 100%;
    width: 100%;
}
#panel {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1000;
    background-color: whitesmoke;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0
    rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    width: 150px;
}
#checkboxes {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
/*
#path-dialog {
    text-align: center;
    display: block;
    padding: 10px;
    z-index: 1002;
    position: absolute;
    width: 300px;
    height: 200px;
    margin: auto;
    background-color: whitesmoke;
    left: 50%;
    top: 50%;
    margin-top: -200px;
    margin-left: -150px;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0
    rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#shading {
    display: none;
    position: absolute;
    z-index: 1001;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}
*/

.layer-toggle-label {
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
}
.helper-text-container {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0px;
    height: 20%;
    z-index: 1000;
    display: none;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0),  rgba(0, 0, 0, 0.7));
}
.helper-text {
    font-size: x-large;
    font-weight: bold;
    color: white;
    -webkit-user-select: none;
    user-select: none;

}
.visibility-button{
    max-height: 16px;
    padding: 0px;
}

.parent-check {
    font-weight: bold;
}

.child-check{
    margin-left: 15px;
    display: none;
    font-weight: normal;
}

.child-check.active{
    display: block;
}
