body 
{
    font-family: Arial;
    min-height: 100vh;
    height: 100%;
    margin: 0;
    background-color: #f8f9fa;
}





.Navigation_Container
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 100%;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);
}
@media (max-width: 1000px) {
  .Navigation_Container {
    margin-top: 20px;
    padding-left: 0;
    margin-left: 0;
    border: none;
  }
}


.Navigation
{
    justify-content: space-around;
    display:flex;
    width: 100%;
    max-width: 1400px;
    font-size: 25px;
    color: black;
    margin: 0 auto;
    
}
.Navigation a:hover, a:active
{
    color: #1abc9c;
    text-decoration: underline;
}
.Navigation a
{
    color: #343a40;
    text-decoration: none;
    padding: 15px;
  

}

.Logo_Container
{ 
    width: 200px;
    padding: 0;
    border: 3px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,.05);

}
.Logo_Container img
{
    width: 100%; 
    height: auto; 
    display: block;
}
@media (max-width: 1000px) {
  .Logo_Container {
   width: 100%;
   max-width: 150px;
   height: auto;

    
  }
}
@media (max-width: 1000px) {
  .Logo_Container img {
   
   width: 140%;
    
  }
}

/* Menü-Button (Hamburger) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 3.5rem;
  cursor: pointer;
  padding: 24px;
}

/* Mobile Ansicht */
@media (max-width: 1000px) {
  .Navigation {
    display: none;
    flex-direction: column;
    width: 100%;
    font-size: 26px;
    background-color: #f8f8f8;
    border-top: 1px solid #ccc;
    
  }

  .Navigation.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .Navigation a {
    padding: 24px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-size: 28px;
  }
}
@media (max-width: 1000px)
{
    .content
    {
        margin-top: 20%;
    }
}









h1
{
    text-align: center;
    font-size: xx-large;
}
.Titel
{
    text-align: center;
    padding-bottom: 0px;
}
th
{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 130%;
}
td, th 
{
   
    text-align: center;
    padding: 8px;
    border: 1px solid grey;
    font-size: 130%;
}
.Tabelle {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      margin-top: 50px; /* Reduzierter Abstand nach oben für bessere Sichtbarkeit */
      padding: 0 20px; /* Innenabstand für kleine Bildschirme */

    }
    
    .Tabelle table {
      width: 100%;
      max-width: 1400px; /* Begrenzt die maximale Breite der Tabelle */
      margin: 0 auto; /* Zentriert die Tabelle */
      border-collapse: collapse;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Fügt einen subtilen Schatten hinzu */
      border-radius: 8px; /* Abgerundete Ecken für die Tabelle */
      overflow: hidden; /* Stellt sicher, dass der Schatten und die Ecken korrekt angezeigt werden */
    }
    
    /* Einheitlicher Stil für Tabellenzellen */
    .Tabelle td, .Tabelle th {
      text-align: center;
      padding: 12px; /* Mehr Innenabstand für bessere Lesbarkeit */
      border: 1px solid #e0e0e0;
      vertical-align: middle;
      
    }
    
    /* Responsive Bilder innerhalb der Tabelle */
    .Tabelle table td img {
      width: 100%;
      height: auto;
      max-width: 400px;
      border-radius: 4px;
    }
@media (max-width: 1200px) 
{
    .Tabelle
    {
        margin-left: 2.5%;
    }
}
.Tabelle a:not(.ausgenommen)
{
    color:black;
    text-decoration: none;

}
.Tabelle a:not(.ausgenommen):hover, a:not(.ausgenommen):active
{
    text-decoration: underline;
}
.Tabelle a:not(.ausgenommen):visited
{
    color:black;
    text-decoration: none;
}
.ausgenommen
{
  text-decoration: none;
}
.ausgenommen:hover, .ausgenommen:visited
{
  text-decoration: none;
}



.highlighted-column 
{
      background: linear-gradient(to right, #a4dfbd, #4bd675); /* Sanfter Farbverlauf */
      box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1); /* Subtiler innerer Schatten */
      transition: all 0.3s ease;
}

/* Stil für das klickbare Div */
#Trigger_Infos
{
  cursor: pointer;
  display: block; /* Neu: display von inline-block auf block geändert */
  width: fit-content; /* Behält die Breite des Inhalts bei */
  padding: 12px 24px;
  margin: 20px auto 0 auto; /* Neu: Automatische horizontale Zentrierung */
  background: linear-gradient(145deg, #1abc9c, #16a085); /* Grünlicher Farbverlauf */
  color: white;
  border-radius: 50px; /* Stärker abgerundete Ecken */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  transition: all 0.3s ease;
  order: none;
}
#Trigger_Infos:hover 
{
 background: linear-gradient(145deg,  #1abc27, #169ba0);
  transform: translateY(-2px); /* Bewegt den Button leicht nach oben */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.Trigger_text
{
  text-align: center;
}
@media (max-width: 1100px)
{
  .h1
  {
    font-size: large;
  }
  .Trigger_text
  {
    font-size: medium;
  }
}


.Impressum
{
    width: 100%;
    margin-top: 1000px;
    background-color: darkgrey;
    color: white;
    align-items: center;
    text-align: center;
    padding: 20px;
}