/* ----------------- Fonts ----------------- */
@font-face {
  font-family: VFR;
  src: url("VFR1x1.ttf");
}

/* ----------------- Reset & Global ----------------- */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
}

a {
  text-decoration: none;
}

a#profil {
  padding: 0;
}
a#profil:hover {
  background-color: transparent;
}

menu {
  margin: 0;
  padding: 0;
}

p {
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
}

table,
td {
  border: 1px solid;
  border-collapse: collapse;
}

/* ----------------- Typography ----------------- */
h1 {
  font-family: VFR;
  font-size: 40px;
  color: #223e53;
}
h2 {
  font-family: VFR, sans-serif;
  font-size: clamp(20px, 4vw, 30px);
  text-align: center;
  margin-top: 35px;
  white-space: normal;
}
h3 {
  font-family: VFR;
  font-size: 24px;
  margin: 10px 0;
}
h3#h3inhalt {
  font-family: VFR;
  font-size: 22px;
  margin: 0 0 10px 0;
}
h4 {
  font-family: VFR;
  font-size: 18px;
  margin: 0;
}

/* ----------------- Profile ----------------- */
.profil {
  width: 35px;
  height: 35px;
  margin: 5px 0 0 0;
  border-radius: 100%;
  border: 2px solid #223e53;
  background-color: white;
}
img.profil:hover {
  border: 2px solid #3e8bff;
}

/* ----------------- Layout ----------------- */
div#top {
  width: 100%;
  min-height: 100px;
  margin: 0;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

div#center {
  position: relative;
  display: contents;
  text-align: center;
  overflow: hidden;
  width: 100%;
}

div#content {
  font-size: 13px;
  white-space: nowrap;
}

div#left {
  position: sticky;
  top: 10px;
  display: inline-block;
  min-width: 120px;
  min-height: 200px;
  margin: 10px 0 30px 0;
  padding: 10px;
  border: 4px solid #223e53;
  border-radius: 10px;
  text-align: left;
  vertical-align: top;
}

div#right {
  display: inline-block;
  width: calc(100% - 300px);
  max-width: 1000px;
  min-width: 200px;
  min-height: 400px;
  margin: 0 0 30px 0;
  padding: 10px 10px 10px 20px;
  text-align: justify;
  font-size: 15px;
  overflow: hidden;
  white-space: normal;
}

div.sticky {
  position: sticky;
  top: 0;
}

div#wetterRight {
  overflow: scroll;
}

.cropp {
  width: 100%;
  height: 150px;
  object-fit: cover;
  vertical-align: bottom;
  mask-image: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
}

/* ----------------- Footer ----------------- */
#footer {
  width: 100%;
  min-height: 150px;
  margin: 0 !important;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  background-color: #223e53;
  color: #fff;
  font-family: Arial, sans-serif;
  background: linear-gradient(
    135deg,
    #223e53 0%,
    #345f83 100%
  ); /* leichter Farbverlauf */
}

#donate-section,
#trust-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

#donate-button {
  display: inline-block;
  text-align: center;
}
#donate-button iframe,
#donate-button img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

#links-section {
  display: flex;
  flex-direction: column;
  text-align: left;
}
#links-section a {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  color: #fff;
  text-decoration: none;
}
#links-section a img {
  width: 20px;
  margin-right: 5px;
}
#links-section a:hover {
  text-decoration: underline;
}

#info-section {
  max-width: 250px;
  text-align: center;
}

.pfooterr {
  margin: 0;
  font-size: 12px;
  color: #ccc;
}

/* ----------------- Navigation ----------------- */
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #223e53;
}
li {
  font-size: 18px;
  font-family: VFR;
}
ul#menu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

li a,
.dropbtn {
  color: white;
  text-align: center;
  text-decoration: none;
  padding-left: 0;
  padding-bottom: 0;
  padding-top: 0;
  padding-right: 0;
}

li a:hover,
.dropdown:hover .dropbtn {
  background-color: #3e8bff;
}

li.dropdown {
  display: inline-block;
}

/* ----------------- Dropdown Basis mit Fade ----------------- */
.dropdown-content {
  display: none;
  position: absolute;
  min-width: 200px;
  background-color: #2a4a63;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 8px 0;

  /* 3D Animation + Fade */
  opacity: 0;
  transform: perspective(600px) rotateX(-10deg) translateY(15px) scale(0.98);
  transform-origin: top center;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* Dropdown sichtbar mit 3D Bewegung + Fade */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
  opacity: 1;
  transform: perspective(600px) rotateX(0deg) translateY(0) scale(1);
}

/* ----------------- Links ----------------- */
.dropdown-content a {
  display: block;
  padding: 10px 16px;
  color: #f1f1f1;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease, transform 0.2s ease;
  position: relative;
}

/* Subtiler Hover-Effekt */
.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.08);
  transform: none;
}

/* Aktive Links */
.dropdown-content a.active,
a.anker.active {
  font-weight: bold;
  color: #000;
  background-color: #3e8bff;
  padding-left: 2px;
  padding-right: 2px;
}

/* Anker-Links */
a.anker {
  color: black;
  background-color: white !important;
  cursor: pointer;
}

/* ----------------- Listenpunkte ----------------- */
li#inhalt {
  font-size: 16px;
  margin-bottom: 3px;
  font-family: Arial, Helvetica, sans-serif;
}

li#inhalt:hover {
  font-weight: bold;
}

/* ----------------- Standard Dropdown Sichtbarkeit ----------------- */
.dropdown:hover .dropdown-content {
  display: block;
}

/* ----------------- Forms ----------------- */
input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

input#search {
  background: url("../resources/lupe.png") no-repeat 160px 5px;
  background-size: 16px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin: 55px 0 0 70px;
  padding: 5px 16px;
  min-width: 50px;
}
input#icao {
  border: 1px solid #ccc;
}
button#btnsearch,
input#btnwettersearch {
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #223e53;
  color: white;
  height: 20px;
  width: 64px;
  padding: 3px;
  cursor: pointer;
}
button#btnsearch {
  height: 28px;
  margin-left: 0;
  visibility: hidden;
  width: 110px;
  height: 30px;
}
input#btnwettersearch {
  height: 22px;
}
button#btnsearch:hover,
input#btnwettersearch:hover {
  background-color: #3e8bff;
  font-weight: bold;
}

/* ----------------- Widgets ----------------- */
ul#stalist {
  padding-left: 50px;
  list-style-type: square;
  background-color: white;
}
ul#stalist li {
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 60px;
  z-index: 99;

  /* Größe & Form */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid #000; /* dünne schwarze Linie */
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #fff;
  color: #3e8bff;
  font-size: 22px;
  font-weight: bold;

  /* Schatten */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);

  /* Animation */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Hover-Effekt mit Scale + Glow */
#myBtn:hover {
  background-color: #fff;
  transform: translateY(-3px) scale(1.07);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25), 0 0 10px rgba(62, 139, 255, 0.5); /* blauer Glow */
}

/* Bounce-Effekt beim Einblenden */
#myBtn.show {
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Accordion */
.accordion {
  width: 100%;

  font-size: 15px;
  color: #fff;
  background-color: #223e53;
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
  transition: 0.6s;
}

.active,
.accordion:hover {
  background-color: #3e8bff;
}
.accordion:after {
  float: right;
  margin-left: 5px;
  font-weight: bold;
  color: #fff;
}
.panel {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  background-color: #fff;
  transition: max-height 0.6s ease-out;
}

/* Autocomplete */
.autocomplete {
  position: relative;
  display: inline-block;
}

.autocomplete-items {
  position: absolute;
  top: 100%; /* statt 101%, sauberer */
  left: 90px; /* margin-left + left kombiniert */
  width: 185px;
  border: 2px solid #d4d4d4;
  border-top: none; /* verhindert Doppelrahmen mit Input */
  z-index: 99;
  text-align: left;
  background-color: #fff; /* hierhergezogen, gilt für alle Items */
}

.autocomplete-items div {
  padding: 10px;
  border-bottom: 1px solid #d4d4d4;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease; /* smooth hover effect */
}

.autocomplete-items div:last-child {
  border-bottom: none; /* verhindert unnötige Linie unten */
}

.autocomplete-items div:hover,
.autocomplete-active {
  background-color: #3e8bff;
  color: #fff;
}

/* Community */
div#comnew {
  width: 99%;
  margin-left: 0;
  border: 3px solid #223e53;
  border-radius: 10px;
  box-shadow: 5px 5px 10px black;
}
div#post {
  width: 99%;
  min-height: 200px;
  margin-top: 20px;
  border: 3px solid #223e53;
  border-radius: 10px;
  background-color: green;
}
input#newPostTitle {
  display: block;
  width: 90%;
  height: 30px;
  margin: 10px 0 10px 5%;
  border: 1px solid #ddd;
  border-radius: 7px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}
textarea#textnewPost {
  display: block;
  width: 50%;
  height: 0;
  margin: 10px 10px 10px 5%;
  font-family: Arial, Helvetica, sans-serif;
}
button#postit {
  margin: 0 10px 10px 10px;
}

.bruchstrich {
  margin: -10px 0 6px 0;
  line-height: 0.1em;
}
.beispiel {
  min-width: 300px;
  min-height: 110px;
  margin: 5px 0 60px 0;
  padding: 10px;
  border-radius: 5px;
  background-color: lightsteelblue;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Chat */
.chat {
  max-width: 400px;
  margin: 20px;
  font-family: Arial, sans-serif;
}
.message {
  max-width: 70%;
  margin: 5px 0;
  padding: 10px 15px;
  border-radius: 10px;
  color: white;
}
.pilot {
  text-align: left;
  align-self: flex-start;
  background-color: #223e53;
  border: 1px solid #000;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
}
.tower {
  margin-left: 130px;
  text-align: left;
  align-self: flex-end;
  background-color: #dc0000;
  border: 1px solid #000;
  box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
}

/* Badge */
.neu-badge {
  background-color: #dc0000;
  color: white;
  font-size: 10px;
  font-weight: normal;
  padding: 2px 6px;
  margin-left: 12px;
  border-radius: 4px;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 5px;
  display: block;
  float: right;
}
a.mobilli,
.dropdown-content a.mobilli {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ----------------- Media Queries ----------------- */
@media (max-width: 950px) {
  html,
  body {
    overflow-x: hidden !important;
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  img {
    width: 35px;
    height: 100%;
    float: left;
  }
  h1 {
    font-size: 20px !important;
    margin-left: 10px !important;
  }
  div#top {
    min-height: 50px !important;
  }
  div#left {
    display: none !important;
  }
  div#right {
    width: calc(100% - 50px) !important;
  }

  .mobilli {
    margin: 0 !important;
    font-size: 15px;
  }
  .mobillogo {
    padding-left: 0 !important;
  }
  button#myBtn,
  input#search,
  .cropp {
    display: none !important;
  }

  .mobilfooter {
    width: 15px;
    height: 100%;
  }
  div#mobilfooterr {
    margin-left: 0 !important;
  }
  #menu {
    border-radius: 0 0 30px 30px !important; /* sanfte, lange Rundungen wie Tragflächen */
  }
}

@media (max-width: 768px) {
  #footer {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 10px;
  }
  #links-section {
    text-align: center;
  }
  #links-section a {
    justify-content: center;
  }
  #info-section {
    max-width: 100%;
  }
}

@font-face {
  font-family: VFR;
  src: url("VFR1x1.ttf");
}

body {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 15px;
}

h1 {
  font-family: VFR;
  font-size: 40px;
  color: #223e53;
}

h2 {
  font-family: VFR;
  font-size: 30px;
  color: #223e53;
  margin-top: 50px;
  white-space: normal;
}

h3 {
  font-family: VFR;
  font-size: 25px;
  color: #223e53;
}

h4 {
  font-family: VFR;
  font-size: 22px;
  color: #223e53;
}

h5 {
  font-family: VFR;
  font-size: 20px;
  color: #223e53;
}

h6 {
  font-family: VFR;
  font-size: 18px;
  color: #223e53;
}

p {
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
}

.content {
  margin: auto;
  max-width: 900px;
  text-align: left;
  padding: 15px;
}

img {
  max-width: 100%;
  height: auto;
}

.image-container {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.image-container img {
  margin: 0 10px;
  max-width: 100%;
  height: auto;
}

.float-image {
  float: right;
  margin-left: 15px;
  max-width: 45%;
}

button {
  font-family: VFR;
  font-size: 15px;
  background-color: #223e53;
  border: none;
  color: white;

  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin: 4px 2px;
  cursor: pointer;
}

button:hover {
  background-color: #3e8bff;
}

.footer {
  font-size: 10px;
  text-align: center;
  padding: 10px;
  color: #666;
}

.center {
  text-align: center;
}

pre {
  font-family: monospace;
  background-color: #f4f4f4;
  padding: 10px;
  border: 1px solid #ddd;
  overflow-x: auto;
  max-width: 100%;
  white-space: pre-wrap;
  word-wrap: break-word;
}

code {
  font-family: monospace;
  background-color: #f4f4f4;
  padding: 2px 4px;
  border-radius: 4px;
}

#menu {
  --menu-bg: #223e53;
  --menu-bg-hover: #3e8bff;
  --menu-color: #ffffff;
  --menu-color-hover: #ffffff;
  --menu-font: VFR, sans-serif;
  --menu-font-size: 18px;

  --menu-padding-y: 14px;
  --menu-padding-x: 16px;

  --dropdown-bg: #223e53;
  --dropdown-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);

  --badge-bg: #dc0000;
  --badge-color: white;
  --badge-font-size: 10px;
  --badge-padding: 2px 6px;
  --badge-radius: 4px;
  --badge-margin-left: 8px;

  /* Flugzeug-Flügel Optik */
  border-radius: 0 0 120px 120px; /* sanfte, lange Rundungen wie Tragflächen */
  background: linear-gradient(
    135deg,
    #223e53 0%,
    #345f83 100%
  ); /* leichter Farbverlauf */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2), 0 12px 30px rgba(0, 0, 0, 0.15); /* mehr Tiefe */
  transition: all 0.3s ease;
}

#menu li a,
#menu li .dropbtn {
  display: inline-block;
  padding: var(--menu-padding-y) var(--menu-padding-x);
  color: var(--menu-color);
  font-family: var(--menu-font);
  font-size: var(--menu-font-size);
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.3s ease;
}

#menu li a:hover,
#menu .dropdown:hover .dropbtn {
  background-color: var(--menu-bg-hover);
  color: var(--menu-color-hover);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* ----------------- Dropdown ----------------- */
#menu li.dropdown {
  display: inline-block;
}

#menu .dropdown-content {
  display: none;
  position: absolute;
  min-width: 200px;
  background: linear-gradient(
    135deg,
    #223e53 0%,
    #2b4f6c 100%
  ); /* Verlauf wie beim Menü */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15), 0 12px 30px rgba(0, 0, 0, 0.1); /* moderner Schatten */
  border-radius: 0 0 10px 10px; /* leichte Abrundung für harmonische Optik */
  z-index: 1;
  transition: all 0.3s ease;
}

#menu li.dropdown:hover .dropdown-content {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), 0 0 10px rgba(62, 139, 255, 0.4);
}
#menu .dropdown-content a {
  display: block;
  padding: 12px 16px;
  color: var(--menu-color);
  text-decoration: none;
  text-align: left;
}

#menu .dropdown-content a:hover {
  background-color: var(--menu-bg-hover);
}

#menu .dropdown:hover .dropdown-content {
  display: block;
}

/* ----------------- Badge ----------------- */
#menu .menu-badge {
  background-color: var(--badge-bg);
  color: var(--badge-color);
  font-size: var(--badge-font-size);
  padding: var(--badge-padding);
  border-radius: var(--badge-radius);
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
  margin-left: var(--badge-margin-left);
  float: right;
  margin-top: 5px;
}

/* ----------------- Aktiv ----------------- */
#menu .active {
  background-color: var(--menu-bg-hover);
}

/* ----------------- Modern & Klassisch Dezentes Seiten-Menü ----------------- */
#left {
  --side-menu-width: 220px;
  --side-menu-bg: #ffffff;
  --side-menu-border: #dcdcdc;
  --side-menu-padding: 15px;
  --side-menu-font: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --side-menu-font-size: 15px;
  --side-menu-heading-font-size: 18px;
  --side-menu-link-color: #333;
  --side-menu-link-hover-color: #1e90ff;
  --side-menu-ol-padding-left: 20px;
  --side-menu-radius: 10px;
  --side-menu-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  --side-menu-hover-bg: rgba(30, 144, 255, 0.08);
}

#left.sticky {
  width: var(--side-menu-width);
  background-color: var(--side-menu-bg);
  border: 1px solid var(--side-menu-border);
  border-radius: var(--side-menu-radius);
  padding: var(--side-menu-padding);
  position: sticky;
  top: 20px;
  box-shadow: var(--side-menu-shadow);
}

#left h3#h3inhalt {
  font-family: var(--side-menu-font);
  font-size: var(--side-menu-heading-font-size);
  margin-bottom: 12px;
  color: #1a1a1a;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 4px;
}

#left ol {
  padding-left: var(--side-menu-ol-padding-left);
  margin: 0;
}

#left ol li {
  list-style-type: decimal;
  margin-bottom: 6px;
  font-family: var(--side-menu-font);
  font-size: var(--side-menu-font-size);
}

/* ----------------- Links ----------------- */
#left ol li a.anker {
  padding: 6px 10px;
  color: var(--side-menu-link-color);
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s ease; /* sanfter Übergang */
}

#left ol li a.anker:link,
#left ol li a.anker:visited {
  color: var(--side-menu-link-color);
}

#left ol li a.anker:hover,
#left ol li a.anker:focus {
  color: var(--side-menu-link-hover-color);
  background-color: var(--side-menu-hover-bg);
}

#left ol li a.anker.active {
  font-weight: bold;
  color: var(--side-menu-link-hover-color);
  background-color: var(--side-menu-hover-bg);
}

/* ----------------- Responsiv ----------------- */
@media screen and (max-width: 768px) {
  #left.sticky {
    width: 100%;
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }
}

#right {
  font-family: "Inter", sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  padding: 20px;
}

#right h3 {
  border-bottom: 2px solid #3e8bff;
  padding-bottom: 4px;
  margin-top: 40px;
}

#right table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

#right th,
#right td {
  padding: 12px;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
}

#right th {
  background: linear-gradient(90deg, #3e8bff 0%, #6699ff 100%);
  color: #fff;
  font-weight: 600;
}

#right tr:nth-child(even) {
  background-color: white;
}

.beispiel {
  background-color: #f0f4ff; /* sanftes Hellblau */
  border-left: 4px solid #3e8bff; /* farbiger Rand links */
  padding: 16px; /* Innenabstand */

  margin: 20px 0; /* Abstand nach oben/unten */
  border-radius: 8px; /* abgerundete Ecken */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); /* leichter Schatten */
  display: block; /* Standard für div, optional */
  width: auto; /* passt sich der Elternbreite an */
}

.h3acc {
  color: white;
  font-size: 20px;
}

/* Container */
#wetterWrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /* sorgt für Umbruch bei kleinen Bildschirmen */
  gap: 20px;
}

/* Spalte mit Überschrift + Box */
.wetterColumn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 450px;
  max-width: 100%;
}

/* Überschrift */
.wetterColumn h3 {
  margin: 0 0 8px 0;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #223e53;
  border-bottom: 2px solid #3e8bff;
  padding-bottom: 6px;
}

/* Boxen */
#wetterLeft,
#wetterRight {
  width: 450px;
  min-height: 200px;
  max-height: 480px;
  background-color: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 16px;
  white-space: normal;
  overflow: auto;
  box-sizing: border-box;
}

/* Mobile Optimierung */
@media (max-width: 1000px) {
  .wetterColumn {
    width: 100%;
  }

  #wetterLeft,
  #wetterRight {
    max-height: none; /* damit nicht unnötig abgeschnitten wird */
  }
}

@media (max-width: 600px) {
  .wetterColumn h3 {
    font-size: 16px;
    padding-bottom: 4px;
  }

  #wetterLeft,
  #wetterRight {
    padding: 12px;
  }

  #wetterLeft p,
  #wetterRight p {
    font-size: 13px;
  }
}
