.container {
  display: flex;
  border: 1px solid rgb(181, 179, 179);
  width: 800px;
  font-family: sans-serif;
  font-size: 14px;
  line-height: 180%;
  position: relative;
}

.column {
  width: 33.33%;
  padding: 5px;
  border-right: 1px solid gray;
  
}

.column:last-child {
  border-right: none;
}

li {
  list-style-type: disc;
}

li:not(:last-child) {
  margin-bottom: 1em;
}

h2 {
  margin-bottom: 10px;
  font-size: 18px;
  text-align: center;
}

.container::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100px; /* Höhe des Bereichs über der Linie */
  background-color: rgb(244, 242, 242); /* Hintergrundfarbe des Bereichs über der Linie */
  z-index: -1; /* Stelle sicher, dass das ::before-Pseudo-Element hinter dem Inhalt liegt */
}

.container::after {
  content: "";
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: black;
  }

ul.top {
    margin-top: 80px;
    padding-left: 18px !important;
    list-style-type: none;
}

ul {
  margin-top: 8px;
  padding-left: 18px !important;
  list-style-type: none;
}

li.highlighted {
  background-color: yellow;
  cursor: pointer;
  border: 1px dotted;
}

/* Rest des CSS-Codes bleibt unverändert */

#smallPopupContainer1, #smallPopupContainer2, #smallPopupContainer3, #smallPopupContainer4, #smallPopupContainer5, #smallPopupContainer6, #smallPopupContainer7, #smallPopupContainer8, #smallPopupContainer9 , #smallPopupContainer10 {
  /* Vorheriger CSS-Stil bleibt erhalten */
  position: absolute;
  font-size: 13px;
  line-height: 190%;
  display: none;
  width: 300px;
  height: 350px;
  background-color: white;
  border: 3px dotted rgb(2, 53, 77);
  border-radius: 30px;
  padding: 10px;
  text-align: left;
  font-family: sans-serif;
  background-color: rgb(202, 225, 234, 0.9);
  z-index: auto;
}



#closeButton {
  /* Positionierung des Schließen-Symbols im SmallPopupContainer */
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 36px;
  color: red;
}

/* Rest des CSS-Codes bleibt unverändert */

#bigPopupContainer {
  /* Vorheriger CSS-Stil bleibt erhalten */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 9999;
}

#closeBigButton {
  /* Neuer CSS-Stil für das Schließen-Symbol im großen Popup */
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  font-weight: bold;
  font-size: 36px;
  color: red;
}

/* Rest des CSS-Codes bleibt unverändert */


#bigPopupContent {
  /* Vorheriger CSS-Stil bleibt erhalten */
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background-color: #fff;
  padding: 10px;
}

#fileViewer {
  /* Vorheriger CSS-Stil bleibt erhalten */
  width: 100%;
  height: 100%;
  border: none;
}
