<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body,
html {
    margin: 0;
    padding: 0;
    height: 100%;
}

#map {
    height: 100%;
    width: 100%;
}

a {
    color: navy;
}

a:visited {
    color: navy;
}

#menu-panel {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 30;
    padding: 6px 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.9);
    border-radius: 5px;
    font: 12px/14px Arial, Helvetica, sans-serif;
    color: navy;
}

.summary-trigger {
    cursor: pointer;
}

.select_box {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 14px;
}

.select_box:last-child {
    margin-bottom: 0;
}

.toggle-button-001 {
    position: relative;
    width: 20px;
    height: 10px;
    margin-right: 6px;
    border: 3px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    box-sizing: content-box;
    transition: border-color 0.4s;
}

.toggle-button-001 input {
    display: none;
}

.toggle-button-001::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: left 0.4s, background-color 0.4s;
}

.toggle-button-001:has(input:checked) {
    border-color: #4bd865;
}

.toggle-button-001:has(input:checked)::after {
    left: 10px;
    background: #4bd865;
}

.map-overlay {
    font: bold 12px/14px "Helvetica Neue", Arial, Helvetica, sans-serif;
    position: absolute;
    width: 180px;
    bottom: 20px;
    left: 0;
    padding: 10px;
}

.map-overlay .map-overlay-inner {
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    width: 180px;
}

.map-overlay label {
    display: block;
    margin: 0 0 0px;
    font-size: 12px;
    top: 100px;
    left: 10px;
    margin-bottom: 5px;
}

.map-overlay input {
    background-color: transparent;
    display: inline-block;
    width: 100%;
    position: relative;
    margin: 0;
    cursor: ew-resize;
}

.maplibregl-popup .maplibregl-popup-content {
    padding: 8px 10px;
    font: 12px/14px Arial, Helvetica, sans-serif;
    color: black;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    width: 280px;
    height: 370px;
    z-index: 100;
    overflow: scroll;
}

.maplibregl-ctrl-geocoder {
    font-size: 14px;
    line-height: 12px;
    font-family: "Open Sans", "Helvetica Neue", Arial, Helvetica, sans-serif;
    position: relative;
    background-color: rgba(255, 255, 255, 1);
    width: 80%;
    min-width: 100px;
    z-index: 1;
    border-radius: 5px;
    transition: width 0.25s, min-width 0.25s;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.maplibregl-ctrl-geocoder .suggestions {
    font-size: 14px;
}

.map-center-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    pointer-events: none;
}

.coords-display {
    position: absolute;
    font: bold 12px/14px "Helvetica Neue", Arial, Helvetica, sans-serif;
    bottom: 90px;
    left: 0px;
    margin: 10px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    font-size: 12px;
    z-index: 1;
    width: 190px;
}

.popup-table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
}

.popup-table th,
.popup-table td {
    border: 1px solid #ddd;
    text-align: left;
    padding: 8px;
    overflow-wrap: break-word;
    font-size: 14px;
}

.popup-table th {
    background-color: #f2f2f2;
}

.maplibregl-popup {
    z-index: 9999 !important;
}

.maplibregl-popup-tip {
    z-index: 9999 !important;
}

.maplibregl-popup-content {
    z-index: 9999 !important;
}

#menu-panel details&gt;fieldset&gt;details&gt;fieldset {
    width: 250px;
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 4px;
    box-sizing: border-box;
}</pre></body></html>