
/* macht man immer, wichtig, weil Webiste auf jedem Broweser immer gleich aussieht */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* das hier machen, um zu testen, dass alles richtig verlinkt ist */
body{
    background-color: rgba(144, 204, 203, 1);
    font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
}




/* Grösse der Map */

#map{
    width: 100%;
    height: 100vh;
    margin: 50px auto 0 auto; /* 50px Abstand nach oben */
    position: relative;
    z-index: 1;
}




/* Titel und Untertitel stylen */

.titel{
    font-size: 3.3rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
    padding: 20px 0;
    color: rgba(102, 97, 97, 1);
    margin-top: 50px
}

.untertitel{
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin: 0;
    padding: 10px 0;
    color: rgba(102, 97, 97, 1);
}




/* Informationen in Box stylen */

h2{
    font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin: 0;
    text-align: center;
    color: rgba(102, 97, 97, 1)
}


.status{
    font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
    font-size: 15px;
    font-weight: regular;
    margin:0;
    text-align: center;
    line-height: 1.2;
    margin-top: -70px;
  
}

.circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    position: absolute;
}

.circle.offen {
    background-color: rgba(160, 177, 136, 1); 

}

.circle.geschlossen {
    background-color: rgba(198, 117, 113, 1);
}



.adresse{
 font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;
 text-align: center;
 margin: 0;
 font-size: 12px;
}




.freiePlaetze{
 font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif; 
 margin:0; 
  font-size: 20px;
  font-weight: regular;
    text-align: left;
}

.gesamtePlaetze{
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif;  
  margin: 0;
  font-size: 12px;

}




.auslastung {
  font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif !important;
  text-align: right !important;
  margin: 0;
}


.auslastung-wert {
    font-size: 20px;
    font-weight: regular;
    color: #666;
}

.auslastung-label {
    font-size: 12px;
    color: #666;
}




/* Standort-Pop-up */

/* Gesamter Popup-Wrapper */
.leaflet-popup-content-wrapper {
    background-color: rgba(182, 219, 217, 1) !important; /* Blau */
    color: rgba(102, 97, 97, 1) !important;
    border-radius: 10px;
    position: relative;
    width: 230px;
    height: 230px;
    padding: 10px;
    border-radius: 10px;
    line-height: 1.2; 
}


/* Popup-Spitze (der kleine Pfeil nach unten) */
.leaflet-popup-tip {
    background-color: rgba(182, 219, 217, 1) !important;
}


.standort-popup {
    background-color: rgba(182, 219, 217, 1);
    padding: 8px;
    border-radius: 5px;
    font-weight: regular;
    font-size: 24px !important;  
    text-align: center !important;
    font-family: 'Bebas Neue', Impact, 'Arial Narrow', sans-serif !important;


}

.standort-popup .genauigkeit {
    font-size: 12px;
    font-weight: normal;
    display: block;
    margin-top: 4px;
} */


.status-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}



.info-row {
    display: flex;
    justify-content: space-between;
    margin-top: 20px; /* macht die Elemente tiefer */
    padding: 0 10px;
}

.linke-seite {
    text-align: left;
}

.rechte-seite {
    text-align: right;
}




/* Responsiv: */

@media (max-width:720px) {

    .titel {
        font-size: 3.0rem;
    }
    .untertitel {
        font-size: 1.7rem;
    }
}

@media (max-width:450px) {

    .titel {
        font-size: 2.5rem;
    }
    .untertitel {
        font-size: 1.4rem;
    }
}