#map {
    height: calc(100% - min(2vw, 2vh));
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    top: min(1vw, 1vh);
}

.marker-station {
    background-color: rgb(173, 188, 230);
    width: 20px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.marker-inner-station {
    width: 50%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    aspect-ratio: 1/1;
    background-color: white;
}

.station-popup {
    font-size: 1.25em;
    height: 1.25em;
    line-height: 1;
    display: flex;
    align-items: center;
    font-weight: 700;
    color: rgb(41, 108, 131) !important;
    text-decoration: none;
    gap: 0.25em;
}

.station-popup img {
    height: 80%;
    aspect-ratio: 1/1;
    filter: brightness(0);
}