#map {
    width: 100%;
    height: 600px;
    border: 1px solid #0000002A;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    position: relative;
}
.marker {
    display: block;
    border: none;
    border-radius: 10px;
    padding: 3px;
    background-color: #00000099;
    backdrop-filter: blur(6px) saturate(0.3);
    width: 50px;
    height: 80px;
    color: #fff;
    text-align: center;
    box-shadow: 0 4px 8px #00000055;
}
.marker-weather-text {
    font-size: 1.3rem;
    font-family: "Outfit", arial, Helvetica, sans-serif;
    font-weight: 700;
}
.marker-weather-icon img {
    width: 100%;
    height: auto;
}

.wnm-loading-overlay {
    position: absolute;
    inset: 0;
    display: none; /* toggled via JS */
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: all;
    top: auto;
    bottom: 0;
    right: 0;
    left: auto;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(3px);
    padding: 0 1rem;
    border-start-start-radius: 10px;

}

.wnm-loading-overlay p {
    font-family: "Outfit", arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: #fff;
    margin: 0;
    padding: .2em 1em 1em;
}

.wnm-loading-overlay__spinner {
    display: inline-block;
    position: relative;
    top: .5em;
    margin-left: 1em;
    width: 2em;
    height: 2em;
    border-radius: 999px;
    border: 4px solid rgba(255, 255, 255, 0.25);
    border-top-color: white;
    animation: wnm-spin 0.9s linear infinite;
}



@keyframes wnm-spin {
    to {
        transform: rotate(360deg);
    }
}