@font-face {
    font-family: "Mona Sans Expanded";
    font-weight: 400;
    font-style: normal;
    src: url("./MonaSansExpanded-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "Mona Sans";
  font-weight: 400;
  font-style: normal;
  src: url("./MonaSans-Bold.woff2") format("woff2");
}

html,
body {
    height: 100vh;
    margin: 0;
    padding: 0;
}

#map {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
}

.custom-marker {
    border-radius: 50%;
    border: 1px solid black;
    cursor: pointer;
    background-color: white;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    width: 32px;
    height: 32px;
    transition: width 0.2s, height 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;


}

.custom-marker img {
    box-sizing: border-box;
    color: #000;
    height: 100%;
    padding: 5.5px;
    width: 100%;
    object-fit: contain;
    pointer-events: none;
}

.custom-marker:hover {
    width: 36px;
    height: 36px;
}

.maplibregl-popup-content {
    background-color: #fff;
    border-radius: 50px;
    padding: 12px 20px 12px;
    text-transform: uppercase;
    font-size: 16px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0/0.1),0 2px 4px -2px rgb(0 0 0/0.1);
    font-family: "Mona Sans Expanded", sans-serif;
    text-align: center;
    margin: 0.5rem;
}

.maplibregl-popup-tip {
    display: none;
}

.location-filter {
    gap: 7px;
    display: flex;
    flex-wrap: wrap;
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 60px;
    position: fixed;
    bottom: 0;
    z-index: 14;
    width: 500px;
}

.location-filter button {
    text-transform: uppercase;
    border-radius: 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 8px 16px;
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    background-color: #000;
    border: none;
    display: inline-flex;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    cursor: pointer;
    font-family: "Mona Sans", sans-serif;
}

.location-filter button.active {
    background-color: #ff4f06;
    color: #000;
}

.location-filter-disabled {
    pointer-events: none;
}

@media screen and (max-width: 1000px) {
    .location-filter {
        margin-left: 15px;
        margin-right: 15px;
        margin-bottom: 50px;
        width: auto;
    }
}