body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.map-container {
  position: relative;
  overflow: hidden;
  flex: 97; /* 97% für die Karte */
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0; /* Rahmen entfernen */
}

.footer {
  background-color: #f8f8f8;
  padding: 10px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 30px; /* Mindesthöhe des Footers */
  flex: 3; /* 3% für den Footer */
}

.footer a {
  margin: 0 10px;
  text-decoration: none;
  color: blue; /* Link-Farbe auf Blau ändern */
  transition: color 0.3s, text-decoration 0.3s; /* Übergangseffekt für Farbe und Unterstreichung */
}

.footer a:hover {
  text-decoration: underline; /* Unterstreichung hinzufügen bei Mouseover */
}

/* Stil für den Hauptinhalt der Unterseite */
.subpage-content {
  flex: 90; /* 90% für den Hauptinhalt */
  padding: 20px; /* Platz um den Hauptinhalt */
}

header {
  background-color: #333;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

header h1 {
  margin: 0;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ffcc00;
}

footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
  flex: 5; /* 5% für den Footer */
  flex-direction: column; /* Container-Inhalte als Spalten anordnen */
}

footer span {
  font-size: 14px;
}

footer .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer nav ul {
  list-style: none;
  padding: 0;
  display: flex;
}

footer nav ul li {
  margin-right: 20px;
}

footer nav a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}

footer nav a:hover {
  color: #ffcc00;
}
