/* Text */
p {
  text-align: justify;
}

/* Navigation Bar */
.navbar {
  background-color: #094030;
  padding: 0px;
}

.navbar-brand img {
  max-height: 80px;
  width: auto;
}

/* ClimeApp-Button */
.climeapp-button {
  display: inline-block;
  border-radius: 10px;
  margin-top: 10px;
  padding: 15px;
  background-color: #094030;
  text-decoration: none;
  font-weight: bold;
  color: white;
}

/* Button */
.button-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5em;
  margin: 10px;
  padding: 7px;
}

.button-group {
  display: flex;
  gap: 0.5em;
}

.button {
  display: inline-block;
  background-color: lightgrey;
  padding: 5px;
  text-decoration: none;
  border: 2px solid black;
  box-shadow: none;
}

.button-toggle {
  display: inline-block;
  background-color: white;
  border-radius: 20px;
  padding: 5px 10px 5px 10px;
  text-decoration: none;
  border: 2px solid black;
  box-shadow: none;
}

.active-button {
  background-color: #094030;
  color: white;
}

/* Responsive Images */
.responsive-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Quiz */
.question{
  font-weight: bold;
}

.answers {
    margin-bottom: 20px;
}

.answers label {
  display: block;
  margin: 0.25em 0;
  cursor: pointer;
}

/* richtige Antwort */
.answers label.is-correct {
  color: #0d7859; 
  font-weight: bold;
}

/* falsche gewählte Antwort */
.answers label.is-wrong {
  color: #bd2916;
  font-weight: bold;
}

.answers input[type="radio"] {
  margin-right: 0.6em;
}

.quiz-button{
  display: inline-block;
  border-radius: 7.5px;
  margin-top: 10px;
  padding: 5px;
  background-color: #094030;
  text-decoration: none;
  font-weight: bold;
  color: white;
  box-shadow: none;
  border: 2px solid black;

}

#results{
  margin-top: 35px;
  font-weight: bold;
  background: lightgrey;
}

/* Karte */
/* Home-Button */
.leaflet-control.home-btn {
  background: white;
  color: black;
  width: 34px;
  height: 34px;
  font-size: 18px;
  cursor: pointer;
  border: none;
}
