        /*  */

.header{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  min-height: 60px;
}

.navbar_header{
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  column-gap: 10px;
}

.links_navbar_header{
  margin-left: 10px;
  margin-right: 20px;
}

.dropdown_menu{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 50px;
  border-radius: 8px;

  a{
    text-decoration: none;
    margin: 0px;
    cursor: pointer;
  }
}

.dropdown_menu:hover{
  background-color: light-dark(rgb(210, 210, 210),rgb(75, 75, 75));
}

.dropdown_caption{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-size: 20px;
  padding: 15px;
  cursor: default;
}

.dropdown_content{   /* Dropdown zunächst ausblenden. */
  display: none;
  position: absolute; /* Absolut positioniert, relativ zu .dropdown_menu */
  top: 100%; /* Positioniere das Dropdown direkt unter der Caption */
  left: 0; /* Links ausgerichtet */
  background-color: light-dark(var(--primary_background_color_light),var(--primary_background_color_dark));
  width: 220px;
  z-index: 1; /* Sicherstellen, dass es vor anderen Elementen angezeigt wird */
  border-style: solid;
  border-radius: 8px;
  border-color: light-dark(rgb(210, 210, 210),rgb(75, 75, 75));;
  border-width: 1px;

  a{
    text-decoration: none;
    margin: 5px;
    padding: 5px 5px 5px 15px;
    font-size: 18px;
    border-radius: 6px;
  }

  a:hover{
    background-color: light-dark(rgb(210, 210, 210),rgb(75, 75, 75));
  }
}

.dropdown_menu:hover .dropdown_content{   /* Wenn der Mauszeiger über der Dropdown-Überschrift liegt, dann Dropdown ausklappen. */
  display: flex;
  flex-direction: column;
}

.Login{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
}