/* Allgemeine Stile */
body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    background-color: #fafafa;
}

/* Header und Navigation */
header {
    text-align: center;
    margin-bottom: 20px;
}

h1 {
    font-size: 2em;
    font-weight: 500;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

nav a {
    text-decoration: none;
    font-weight: 500;
    color: #333333;
}

nav a:hover {
    color: #720000;
}

/* Archiv Sektionen */
.archive-section {
    margin: 10px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #ffffff;
}

.archive-section h3 {
    font-size: 1.5em;
    cursor: pointer;
    color: #333333;
}

.archive-section h3:hover {
    color: #720000;
}

/* Versteckte Liste */
.archive-list {
    display: none;
    list-style-type: none;
    padding-left: 0;
    margin: 10px 0;
}

.archive-list li {
    margin: 8px 0;
}

/* Download-Icon */
.archive-list a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.archive-list a img {
    margin-right: 8px;
    width: 16px;
    height: 16px;
}

/* Highlight für aktuelle Sektion */
.highlight {
    background-color: #eae6e1;
    border-color: #cccccc;
}

/* Disclaimer */
#disclaimer {
  font-size: 0.85rem; /* Kleinere Schriftgröße */
  font-style: italic; /* Kursiv darstellen */
  color: #666; /* Dezente graue Farbe */
  text-align: center; /* Optional: zentrieren */
  margin-top: 20px; /* Abstand nach oben */
}


/* Footer */
footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.7em;
    color: #777;
}
