/* Allgemeine CSS-Regeln, die für alle Seiten gelten */
body {
  margin: auto;
  font-family: 'Tahoma', sans-serif;
  padding-top: 20px;
overflow-x: hidden;

}

/* Header-Styling für alle Seiten */
.header {
  background-color: white;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  height: 85px;
  z-index: 1000;
  border-bottom: 4px solid #0167cd;
}

/* Layout für das Bild und die Liste in der Download-Seite */
.download-container {
  margin: auto;
  display: flex; /* Bild und Liste nebeneinander */
  flex-direction: row; /* Bild und Liste nebeneinander */
  align-items: normal; /* Vertikale Ausrichtung oben */
  gap: 20px; /* Abstand zwischen Bild und Liste */
  width: 100%; /* Container nimmt 50% der Bildschirmbreite ein (kann angepasst werden) */
}

/* Anpassung für die Liste */
.download-content {
  display: flex;
  flex-direction: column; /* Liste bleibt untereinander */
  align-items: flex-start; /* Vertikale Ausrichtung der Liste */
  width: 100%; /* Breite der Liste */
}

/* Bild-Styling */
.download-image-container {
  display: flex;
  justify-content: flex-end; /* Bild nach rechts ausrichten */
  flex-shrink: 0; /* Bild soll nicht schrumpfen */
  position: relative; /* Ermöglicht absolute Positionierung von Buttons */
  }

.download-image {
  width: 100%; /* Bild nimmt die volle Breite des Containers ein */
  max-width: 400px; /* Maximale Breite des Bildes */
  height: auto; /* Höhe des Bildes bleibt proportional */
  margin-top: 0; /* Abstand nach oben */
  flex-shrink: 0; /* Bild soll nicht schrumpfen */
  object-fit: contain; /* Bild füllt den Container proportional aus */
}

/* Titel und den Text der Cards rechts von Slides */
.card-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #0167cd;
}

.card-text {
  font-size: 18px;
  line-height: 1.7;
  
}

/* Weitere allgemeine CSS-Regeln */
.menu {
  display: flex;
  gap: 20px;
}

.menu .btn {
  background-color: #0167cd;
  color: white;
  border: none;
}

.menu .btn:hover {
  background-color: #024d97;
}
.btn-outline-custom {
  border-color: #0167cd; 
  color: #0167cd; /* Textfarbe */
} 
.btn-outline-custom:hover {
  background-color: #024d97; /* Hintergrundfarbe beim Hover */
  color: white; /* Textfarbe beim Hover */
}

.btn-outline-custom-download {
  border-color: #0167cd; /* Beispiel: rote Umrandung */
  color: #0167cd; /* Textfarbe */
  position: relative; /* Ermöglicht die Verwendung von top/left */
  left: 50px; /* Schiebt den Button nach rechts */
  top: 50px; /* Schiebt den Button nach unten */
  margin-bottom: 20px;
}

.btn-outline-custom-download:hover {
  background-color: #024d97; /* Hintergrundfarbe beim Hover */
  color: white; /* Textfarbe beim Hover */
}


.logo img {
  height: 40px;
}

.screenshot img {
  height: auto;
  width: 300px;
  margin-left: 100px;
}

/* Flexbox Layout für Bild und Infosection */
.content-container {
  display: flex; /* Aktiviert Flexbox */
  flex-wrap: wrap; /* Damit Inhalte auf kleineren Bildschirmen umbrechen */
  align-items: center; /* Vertikale Ausrichtung in der Mitte */
  gap: 50px; /* Abstand zwischen Bild und Infosection */
  margin: 20px 200px; /* Abstand zum Rand */
  margin-top: 20px;
}

.image-container {
  max-width: 300px; /* Maximale Breite des Bildes */
  height: auto; /* Höhe des Containers automatisch */
  flex-shrink: 0; /* Verhindert, dass das Bild skaliert wird */
  margin-left: 0;
  position: relative; /* Referenz für absolute Positionierung der Buttons */
}

.info-section {
  flex: 1; /* Die Infosection nimmt den restlichen Platz ein */
  padding: 10px;
  background-color: #f8f9fa; /* Hintergrund der Infosection */
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optionaler Schatten */
}

/* Bild selbst */
.image-container img {
  display: block;
  width: 100%; /* Bild passt sich der Containerbreite an */
  height: auto; /* Proportionale Höhe */
  object-fit: cover; /* Bild füllt den Container proportional aus */
}


.spacer {
  margin-top: 60px; /* Verhindert, dass Inhalt unter dem Header versteckt wird */
}

.img-login {
  max-width: 100%; /* Bild passt sich an den Container an */
  height: auto; /* Höhe wird proportional angepasst */
  display: block; /* Entfernt unnötige Inline-Spaces */
}
margin: 0 auto;
.row {
  margin-right: 0;
  margin-left: 0;
}
.col-md-5 img {
  max-width: 100%; /* Bildbreite auf Container beschränken */
  height: auto;
}

/* ===============================
   NEUE KLASSEN FÜR CHECK-IN SEITE
   =============================== */

/* Container für Carousel + Card oder Infobereich */
.checkin-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 100px;
  margin: 20px auto;       /* oben/unten 20px, zentriert mittig */
  max-width: 1000px;        /* maximale Gesamtbreite (z. B. ~ halbe Größe) */
  }

.checkin-image-container {
  max-width: 350px;        /* statt 300px: Bild/Carousel nur noch halb so breit */
  height: auto;
  flex-shrink: 0;
  margin-left: 0;
  padding: 10px;
  position: relative;       /* für Overlays/Buttons */
  background-color: #f8f9fa;  
  border: 2.5px solid #0167cd;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  
}

.checkin-info-section {
  flex: 1;
  padding: 10px;
  background-color: #f8f9fa;
  border: 2.5px solid #0167cd;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Farben & Größe der einzelnen Indikator-Buttons */
.carousel-indicators [data-bs-target] {
  background-color: #ccc !important;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  /* border: 2px solid #000; // falls du einen Rahmen willst */
}

/* Aktiver Indikator */
.carousel-indicators .active[data-bs-target] {
  background-color: #0167cd !important;
}

/* Jetzt den Container 50px höher setzen */
.carousel-indicators {
  bottom: -75px !important; 
}
/* Ändere die Farbe der Pfeile mit CSS-Filtern */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(82%) sepia(100%) saturate(7482%) hue-rotate(199deg) brightness(90%) contrast(101%);
}

/* Stil für die Button-Container */
.carousel-controls {
  display: flex;
  justify-content: center;  /* Zentriert die Buttons horizontal */
  gap: 10px;                /* Setzt einen Abstand zwischen den Buttons */
  margin-top: 10px;         /* Abstand nach oben zum Carousel */
}

/* Spezifischer Container für das Accordion */

.accordion-tipps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;                  /* Abstand zwischen den Elementen innerhalb des Accordions */
  margin-left: 50px;          /* Zentrierung und Abstand zum Rand */
  max-width: 500px;          /* Maximale Breite des Containers */
  padding: 10px;              /* Innerer Abstand */
  background-color: #f8f9fa;  /* Hintergrundfarbe */
  border: 2.5px solid #0167cd; /* Rahmen des Containers */
  border-radius: 5px;         /* Abrundung der Ecken */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Schatten für einen 3D-Effekt */
}
.accordion-tipps .accordion-item {
  border: 1px solid #ccc; /* Rahmen für jedes Accordion-Item */
  margin-bottom: 10px; /* Abstand zwischen den Items */
  box-sizing: border-box;
  width: 100%;
}

.accordion-tipps .accordion-button {
  width:100%;
  padding-left: 10px;
  padding-right: 20px;
  font-size: 1rem;            /* Standard-Bootstrap-Schriftgröße, anpassen nach Bedarf */
  line-height: 1.5;           /* Standard-Bootstrap-Zeilenhöhe */
  background-color: #0167cd !important;
  color: #ffffff !important;             /* Verbesserte Lesbarkeit */
  
}


.accordion-tipps .accordion-button.collapsed {
  
  padding-left: 10px;
  padding-right: 20px;
}

.accordion-tipps .accordion-body {
  padding: 20px; /* Polsterung im Accordion-Body */
  background-color: #fff; /* Hintergrundfarbe des Inhalts */
}


.accordion-tipps .accordion-header  {
  font-size: 28px;
  padding: 10px;   /* Anpassen nach Bedarf */
  margin-left: 0;  /* Entfernt zusätzliches linkes Margin, falls nicht gewünscht */
}


/* Überschriften */
h1 {
  font-size: 36px;
  padding: 15px;
  margin-left: 30px;
  margin-right: 30px;
  
}
h2 {
  font-size: 28px;
  padding: 15px;
  margin-left: 30px;
  margin-right: 30px;
}
p {
  font-size: 18px;
  padding: 15px;
  margin-left: 30px;
  margin-right: 30px;
}

/* Listen */
.indent-list {
  margin: 20px; 
  padding-left: 0px; /* Zusätzlicher Abstand innerhalb der Liste */
}
.indent-list li {
  margin-bottom: 10px; /* Vergrößert den Abstand zwischen den Listenelementen */
  font-size: 18px;
  padding: 15px;
  margin-left: 30px;
  margin-right: 30px;
}

/* Links */
.b_link {
  color: #0167cd; /* Linkfarbe */
  text-decoration: none; /* Entfernt die Unterstreichung */
  font-weight: bold; /* Fett */
}
.b_link:hover {
  color: #024d97; /* Hover-Farbe */
  text-decoration: underline; /* Unterstreichung beim Hover */
}


/* Back to Top Button Styling */
#back-to-top {
  position: fixed;               
  bottom: 20px;                  
  right: 20px;                  
  background-color: #0167cd;     /* Gewünschte Hintergrundfarbe */
  color: white;                  
  display: none;                 
  padding: 10px 15px;            
  border: none;                  
  border-radius: 5px;            
  cursor: pointer;               
  z-index: 1000;                 
  font-size: 16px;               
  transition: background-color 0.3s;
}

#back-to-top:hover {
  background-color: #014f9e; /* Gewünschte Hover-Farbe */
}

@media (max-width: 992px) {
  h1 {
    font-size: 30px; /* Etwas kleiner auf mittleren Bildschirmen */
    margin-left: 20px;
    margin-right: 20px;
  }

  h2 {
    font-size: 24px; /* Angepasste Größe für mittlere Bildschirme */
    margin-left: 20px;
    margin-right: 20px; /* Konsistenz in den Seitenabständen */
  }

  p {
    font-size: 16px; /* Kleinere Schrift für bessere Lesbarkeit */
    margin-left: 20px;
    margin-right: 20px;
  }

  .download-container {
    flex-direction: column; /* Ändert die Anordnung von nebeneinander zu untereinander */
    align-items: center; /* Zentriert die Elemente horizontal */
  }

  .download-image-container img {
    border: 20px; 
    width: 100%; /* Stellt sicher, dass das Bild die gesamte verfügbare Breite nutzt */
    max-width: 100%; /* Stellt sicher, dass das Bild nicht breiter als der Container ist */
    height: auto; /* Passt die Höhe automatisch an die Breite an, um die Proportionen zu wahren */
    object-fit: contain; /* Das Bild wird komplett sichtbar bleiben, ohne zu verzerrt zu werden */
  }

  .download-content {
    width: 100%; /* Stellt sicher, dass die Liste die gesamte verfügbare Breite nutzt */
  }

  .indent-list {
    margin-left: 30px;
    padding-left: 10px; /* Zusätzlicher Abstand innerhalb der Liste */
  }

  .indent-list li {
    margin-bottom: 10px; /* Vergrößert den Abstand zwischen den Listenelementen */
    font-size: 16px;
  }
}

/* Media Queries für Anpassungen auf verschiedenen Bildschirmgrößen */

@media (max-width: 992px) {
  .download-container {
    display: flex;
    flex-direction: column; /* Stapelt Inhalte vertikal auf mittleren Bildschirmen */
    align-items: center; /* Zentriert die Inhalte horizontal */
    width: 100%; /* Nutzt die gesamte verfügbare Breite */
    margin: 0; /* Entfernt alle Margins */
    padding: 15px; /* Fügt innen ein wenig Platz hinzu für bessere Lesbarkeit */
  }

  .download-content, .download-image-container {
    width: 100%; /* Stellt sicher, dass beide Elemente die volle Breite nutzen */
    margin-bottom: 10px; /* Fügt einen Abstand zwischen den Elementen hinzu */
  }

  .download-image-container img {
    max-width: 100%; /* Begrenzt die Bildbreite auf die Containerbreite */
    height: auto; /* Behält die Bildproportionen bei */
    object-fit: cover; /* Stellt sicher, dass das Bild den verfügbaren Raum ausfüllt, ohne zu verzerren */
  }
}

@media (max-width: 768px) {
  .download-container {
    padding: 10px; /* Reduziert das Padding auf kleineren Bildschirmen */
  }

  .download-content, .download-image-container {
    margin-bottom: 15px; /* Erhöht den Abstand auf sehr kleinen Bildschirmen */
  }

  .download-image-container img {
    object-fit: contain; /* Ändert object-fit, um sicherzustellen, dass das gesamte Bild sichtbar ist */
  }

.img-login {
    max-width: 80%; /* Begrenze die Breite */
    margin: 0 auto; /* Zentriert das Element */
  }

  .menu {
    display: none;
    flex-direction: column;
    background-color: #0167cd;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  .menu.show {
    display: flex;
  }
  .burger-menu {
    display: block;
    background: none;
    border: none;
    color: #0167cd;
    font-size: 24px;
    cursor: pointer;
  }
  #back-to-top {
    bottom: 15px;
    right: 15px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

@media (min-width: 769px) {
  .burger-menu {
    display: none;
  }

  .download-container {
    flex-direction: row; /* Behält nebeneinander Anordnung bei größeren Bildschirmen */
    justify-content: space-between; /* Verteilt den Raum gleichmäßig */
    align-items: center; /* Stellt sicher, dass die Inhalte vertikal zentriert sind */
  }

  .download-content {
    width: 50%; /* Weist der Liste die Hälfte der Breite zu */
    padding-right: 20px; /* Fügt etwas Abstand zum Bild hinzu */
  }

  .download-image-container {
    width: 50%; /* Weist dem Bildcontainer die andere Hälfte der Breite zu */
    padding-left: 20px; /* Fügt etwas Abstand zur Liste hinzu */
  }

  .download-image-container img {
    width: 100%; /* Stellt sicher, dass das Bild die verfügbare Breite des Containers nutzt */
    max-width: 300px; /* Begrenzt die maximale Breite des Bildes, um Übergrößen zu vermeiden */
    height: auto; /* Passt die Höhe automatisch an die Breite an, um die Proportionen zu wahren */
    object-fit: contain; /* Das Bild wird komplett sichtbar bleiben, ohne zu verzerrt zu werden */
  }
}

.indent-list {
  margin-left: 20px;  /* Unified margin-left for consistency */
  padding-left: 15px; /* Padding adjustment for better alignment */
}
.indent-list li {
  margin-bottom: 10px; /* Consistent bottom margin for list items */
}

@media (max-width: 992px) {
  .indent-list {
    margin-left: 15px;  /* Slightly less margin for tablets and similar devices */
    padding-left: 10px; /* Corresponding padding adjustment */
  }
}

@media (max-width: 768px) {
  .indent-list {
    margin-left: 10px;  /* Reduced margin for mobile devices */
    padding-left: 5px;  /* Reduced padding for mobile devices */
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 26px; /* Smaller font size for small screens */
    margin-left: 15px;
    margin-right: 15px;
  }

  h2 {
    font-size: 22px; /* Smaller font size for h2 on small screens */
    margin-left: 15px;
    margin-right: 15px;
  }

  p {
    font-size: 14px; /* Smaller font size for paragraphs on small screens */
    margin-left: 15px;
    margin-right: 15px;
  }
}
