/* Kontakt-Karte: dunkles Design passend zur Website (Schwarz/Weiß, Haas Grotesk) */
#osmMap {
    background: #1a1a1a;
}

/* Marker: Kreis-Motiv wie die Pfeil-Buttons der Website */
.capstone-marker {
    background: transparent;
    border: none;
}
.capstone-marker-dot {
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2.25px solid #fff;
    background: rgba(0, 0, 0, 0.55);
    box-sizing: border-box;
    position: relative;
}
.capstone-marker-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 50%;
    background: #fff;
}

/* Popup im Seiten-Stil */
#osmMap .leaflet-popup-content-wrapper {
    background: #000;
    color: #fff;
    border-radius: 0;
    box-shadow: none;
    font-family: "Haas Grotesk Text Web", Helvetica, Arial, sans-serif;
}
#osmMap .leaflet-popup-content {
    margin: 16px 20px;
    font-size: 15px;
    line-height: 1.5;
}
#osmMap .leaflet-popup-tip {
    background: #000;
}
#osmMap a.leaflet-popup-close-button {
    color: #fff;
}

/* Zoom-Controls dunkel */
#osmMap .leaflet-control-zoom a {
    background: #000;
    color: #fff;
    border-color: #333;
}
#osmMap .leaflet-control-zoom a:hover {
    background: #1a1a1a;
}

/* Attribution dezent dunkel */
#osmMap .leaflet-control-attribution {
    background: rgba(0, 0, 0, 0.6);
    color: #999;
}
#osmMap .leaflet-control-attribution a {
    color: #ccc;
}
