/* Stil für die LEAFLET KARTE */
#map { 
  width: 800px; height: 600px; 
}

.leaflet-popup-content-wrapper {
    font-family: inherit !important; /* Vererbe die Schriftart von übergeordneten Elementen */
}

body {
    color: DimGray; /* Dunkelgrau als Schriftfarbe */
}

a {
    color: #006699; /* Blaugraue Farbe für den Link */
    text-decoration: none; /* Entfernt die Standard-Unterstreichung des Links */
}

a:hover {
    color: #2b4756; /* Dunklere Blaugraue Farbe für den Link beim Überfahren mit der Maus */
}

.custom-tooltip {
    background-color: white;
    padding: 3px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

.custom-tooltip h6,
.custom-tooltip p {
    margin: 0;
    padding: 0;
}

.btn-xs {
    padding: 0rem 0.2rem;
    font-size: 0.8rem;
    line-height: 1.2;
    border-radius: 0.1rem;
    margin-top: -5px; /* oder eine andere Zahl, die das gewünschte Aussehen erzielt */
    vertical-align: middle;
}

.selected-button {
    background-color: #ececec; /* Hellgraue Hintergrundfarbe für ausgewählten Button */
    border-color: #6c757d; /* Hellgraue Randfarbe für ausgewählten Button (optional) */
}