/* Grunddesign */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
}

/* Kopfzeile & Navigation */
header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
    background-color: #34495e;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    font-weight: bold;
}

nav ul li a:hover {
    background-color: #1abc9c;
    border-radius: 4px;
}

/* Hauptinhalt */
main {
    max-width: 900px;
    margin: 20px auto;
    padding: 20px;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

h1, h2 {
    color: #2c3e50;
}

/* Fußzeile */
footer {
    text-align: center;
    padding: 15px;
    background-color: #2c3e50;
    color: #fff;
    margin-top: 40px;
}


/* Styling für das Lauflicht */
#ticker-platzhalter {
    background-color: #34495e; /* Dunkler Hintergrund wie ein Display */
    color: #fff;        /* Rote Schrift (Retro-Style). Für Grün z.B. #00ff00 nutzen */
    font-family: 'Courier New', Courier, monospace; /* Monospace für Retro-Look */
    font-weight: bold;
    padding: 8px 0;
    box-shadow: inset 0 0 5px #000;
}
