* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    color: black;
    background-color: rgb(234, 233, 229);
    font-family: sans-serif;
    height: 100vh;
    overflow: hidden;
    display: flex;
}
@supports (-webkit-touch-callout: none) {
    body {
        height: 100dvh;
    }
  }
.col-1 {
    width: 35vw;
    height: calc(100% - 40px);
    overflow: scroll;
    z-index: 999;
    margin: 20px 0;
}
.col-1 header {
    position: sticky;
    top: 0;
    padding: 0 20px 20px 20px;
    background-color: rgb(234, 233, 229);
    color: black;
    border-bottom: 1px solid;
}
.col-1 header > *:not(:first-child) {
    margin-top: 10px;
}
hr.dashed {
    border-style: dashed;
}
.col-2 {
    height: 100%;
    width: 65vw;
    padding: 20px;
}
.col-2 #encampments {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
hr {
    border: none !important;
    height: 1px;
    background-color: darkgreen;
}
ul {
    list-style: none;
    opacity: 0;
    transition: all 0.5s ease;
}
ul li {
    padding: 20px 20px;
    border-bottom: 1px dotted;
    transition: all 0.5s ease;
}
ul li:hover {
    background-color: rgb(255, 245, 168);
}
ul li:target,
ul li.active {
    background-color: rgb(255, 235, 86);
}
ul li h3 + div {
    margin-top: 5px;
}
a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    text-decoration-style: dotted;
}
.mapboxgl-marker {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    box-shadow: 0 0 10px 0 rgb(114, 255, 114);
    background-color: rgb(114, 255, 114);
}
.mapboxgl-marker.hovered {
    outline: none !important;
    background-color: rgb(255, 235, 86);
    box-shadow: 0 0 10px 0 rgb(255, 245, 168);;
    z-index: 999;
}
.mapboxgl-marker.active {
    outline: none !important;
    background-color: rgb(255, 97, 97);
    box-shadow: 0 0 10px 0 rgb(255, 165, 106);
    z-index: 999;
}
#counter {
    position: absolute;
    opacity: 0;
    top: 40px;
    right: 40px;
    background: rgb(114, 255, 114);
    border-radius: 10px;
    padding: 5px 10px;
    transition: all 0.5s ease;
}
@media screen and (max-width: 991px) {
    body {
        flex-direction: column;
    }
    h1 {
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1rem;
    }
    .col-1,
    .col-2 {
        width: 100vw;
    }
    .col-1 {
        margin: 10px 0;
        background-image: linear-gradient(to bottom, transparent 0%, transparent 95%, rgba(0, 0, 0, 0.15) 100%);
        height: 60%;
    }
    .col-1 header {
        padding: 0 10px 10px 10px;
    }
    .col-2 {
        padding: 10px;
        height: 40%;
    }
    ul li {
        padding: 10px 10px;
    }
    .mapboxgl-marker {
        width: 25px;
        height: 25px;
    }
    #counter {
        top: calc(60% + 30px);
        left: 20px;
        right: auto
    }
}
aside {
    padding: 5px 10px;
    background-color: rgb(114, 255, 114);
    border-radius: 10px;
    width: fit-content;
}