#map {
    position: relative;
    z-index: 1;
}

.leaflet-marker-icon.text-label {
    position: relative;
    top: 0;
    left: 0;
}

.leaflet-marker-icon.text-label .text-label__content {
    position: absolute;
    bottom: 8px;
    left: 0;
    white-space: nowrap;
    background-color: #FFF;
    color: #142e42;
    font-weight: bold;
    display: block;
    padding: 0.25rem;
    line-height: 1.2;
    border-radius: 4px 4px 4px 0;
    font-size: 16px;
    box-shadow: 0 0 5px #142e42;
}

.leaflet-marker-icon.text-label .text-label__content:before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 8px;
    height: 8px;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    background-color: #FFF;
}

.leaflet-marker-icon.text-label .text-label__content .small {
    font-size: 12px;
    display: block;
}

/***********************/

.nav {
    display: none;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #1f6ca899;
    backdrop-filter: blur(4px);
    padding: 1em;
    color: #FFF;
    overflow: scroll;
    min-width: 200px;
}
.nav .nav__inner {
    display: flex;
    flex-direction: column;
    gap: 0.5em 0;
}

.nav .nav__title {
    font-weight: bold;
    margin-bottom: 2em;
}
.nav .nav__inner > a {
    display: block;
    border:1px solid #ddd;
    border-radius: 4px;
    padding: 0.25em 0.5em;
}