/* Einheitliche Styles für alle HERACLES FUND Seiten */
body {
    font-family: "Times New Roman", serif;
    background-color: #ffffff;
    color: #000000;
    text-align: center;
    margin: 0;
    padding: 20px;
}

/* Header Bereich */
h1 {
    margin-top: 20px;
    font-size: 24px;
    margin-bottom: 10px;
}

/* Navigation - Zurück Button immer oben */
.back-navigation {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1000;
}

.back-navigation a {
    color: #800080;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 12px;
    border: 1px solid #800080;
    border-radius: 4px;
    background-color: #ffffff;
    transition: background-color 0.3s;
}

.back-navigation a:hover {
    background-color: #f5f0f5;
    text-decoration: none;
}

/* Hauptinhalt Container */
.main-content {
    max-width: 800px;
    margin: 60px auto 40px auto; /* Abstand für fixed back button */
    padding: 0 20px;
}

/* Links */
a {
    color: #800080;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Trennlinien */
hr {
    margin: 20px auto;
    width: 90%;
    max-width: 800px;
    border: 0;
    border-top: 1px solid #000000;
}

/* Standardtext */
p {
    font-size: 14px;
    line-height: 1.6;
}

/* Listen */
ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 8px 0;
}

/* Footer */
.footer {
    margin-top: 40px;
    font-size: 12px;
    color: #333;
}

/* Spezielle Klassen für verschiedene Seiten */

/* News Artikel */
.news-container {
    text-align: left;
    margin: 20px 0;
}

.news-article {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.news-article:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 12px;
    color: #555;
    margin-bottom: 5px;
}

.news-headline {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.news-content {
    font-size: 14px;
    line-height: 1.6;
}

/* Report Liste */
.report-list {
    text-align: left;
    max-width: 100%;
}

.report-list li {
    margin: 10px 0;
}

.report-list a {
    display: block;
    padding: 12px;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.report-list a:hover {
    background-color: #e8e8e8;
    text-decoration: none;
}