body {
    margin: 0;
    padding: 0;
    background-color: #6C7D7F;
}

#map {
    width: 100vw;
    height: 100vh;
}

.mapboxgl-popup {
    max-width: 280px !important;
}

.mapboxgl-popup-content h4 {
    font-weight: 300;
    font-size: 1.5em;
    border-width: 0px 0px 0.5px 0px;
    border-style: solid;
    border-color: rgb(80, 80, 80);
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
.mapboxgl-popup-content h2 {
    font-weight: 500;
    margin-top: 0.5em;
    margin-bottom: 0.3em;
}
.mapboxgl-popup-content p {
    font-weight: 300;
    margin-top: 0.3em;
    margin-bottom: 0em;
}

/* overlay styling */

.map-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    margin-right: 20px;
    font-family: Arial, Helvetica, sans-serif;
    overflow: auto;
    border-radius: 3px;
}

/* legend stuff */

#legend {
    padding: 10px 10px 5px 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 18px;
    margin-bottom: 40px;
    width: 140px;
}

#legend-2 {
    padding: 10px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    line-height: 18px;
    margin-bottom: 30px;
}

/* Add styling for the search bar */
#search-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

#search-bar {
    max-width: 300px;
    padding: 10px;
    font-size: 16px;
}

#results-container {
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    z-index: 1;
    max-width: 300px;
    max-height: 300px;
    background-color: #fff;
    border: 1px solid #ccc;
    display: none;
}

.result-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
}

.result-item:hover {
    background-color: #f2f2f2;
}

.highlighted {
    background-color: #f2f2f2;
}

.checkbox-1 {
    margin-top: 5px;
}

a {
    color: #1c86cc;
}