/* Globale Resets für das v7-Feeling */
body, html {
    margin: 0; padding: 0;
    background-color: #151515;
}

.bg {
    background-image: url(images/background.gif);
    background-size: cover;
    background-attachment: fixed;
    background-position: top center;
    width: 100%;
    min-height: 100vh;
}



.main-wrapper {
    width: 1200px;
    margin: 0 auto; /* Das zentriert die Seite */
    background: transparent;
}

/* Header & Nav */
.headerpic {
    background-image: url(images/header.png);
    width: 1200px; height: 400px;
}

.nav-oben {
    background-image: url(images/nav_bg.png);
    width: 1200px; height: 50px;
}

/* Navigations-Links nebeneinander zwingen */
.top-nav-align ul {
    list-style: none; padding: 0; margin: 0;
    display: flex; justify-content: center;
}

.top-nav-align ul li { display: inline; }

.top-nav-align ul li a {
    color: #42abff !important;
    font-family: "comic sans ms", cursive;
    font-size: 16px;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
}

/* Side Panels EXAKT wie im Original */
.panel-wrapper { width: 240px; margin: 0 auto; }

.panel-title {
    background-image: url(images/nav_oben.png);
    background-repeat: no-repeat;
    width: 240px; height: 70px;
    color: #fef7c6;
    font-family: "comic sans ms", cursive;
    font-size: 20px;
    text-align: center;
    padding-top: 20px; /* Adjust height for text */
}

.side-body {
    background-image: url(images/nav_mitte.png);
    background-repeat: repeat-y;
    width: 240px;
    padding: 0 25px;
    color: #fef5bd;
    font-size: 14px;
}

.panel-unten {
    background-image: url(images/nav_unten.png);
    background-repeat: no-repeat;
    width: 240px; height: 80px;
}

/* Content Area */
.main-bg { padding: 10px; color: #fff; }

.ot-title {
    font-family: "comic sans ms", cursive;
    font-size: 20px;
    color: #f2dd8c;
    text-align: center;
    height: 52px;
    padding-top: 15px;
}

.ot-main-body { font-size: 14px; color: #fff; }

.trenner { text-align: center; margin: 15px 0; }

.bottom {
    background-image: url(images/footer.png);
    width: 1200px; height: 300px;
}

.main-bg2 { color: #fef5bd; padding: 10px; font-size: 12px; }

/* Allgemeine Links im Content und in den Boxen */
a {
    color: #58b9ff !important; /* Ein schönes, helles Himmelblau */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

/* Hover-Effekt für alle Links (beim Drüberfahren) */
a:hover {
    color: #ffffff !important; /* Wird weiß beim Drüberfahren */
    text-decoration: underline;
}

/* Speziell für die Links in den Seitenspalten (Sidebars) */
.side-body a {
    color: #58b9ff;
}

/* Speziell für die Links im Hauptinhalt (News, Artikel) */
.main-body a {
    color: #58b9ff !important;
}

/* Falls du die hellblaue Farbe aus der Navigation exakt überall willst (#42abff) */
/* Ersetze einfach #58b9ff durch #42abff */

/* Links in den kleinen Infobars (Poster, Datum etc.) */
.infobar a {
    color: #add8e6 !important; /* Noch ein Stück heller für die kleinen Texte */
}