body {
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container für die Legende */
.legend-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 0 10px rgba(0, 128, 255, 0.5);
    overflow-y: auto;
    max-height: 90vh;
}

/* Überschriften */
.legend-container h1 {
    text-align: center;
    color: #0080FF;
    margin-bottom: 20px;
}

.legend-section h2 {
    color: #00bfff;
    margin-top: 30px;
}

/* Listenstil */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 5px;
}

/* Zurück-Button */
.back-button {
    display: block;
    text-align: center;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0080FF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #0066CC;
}

h2{
    text-align: center;
}

/* Listenstil - eingerückt nach rechts */
ul {
    list-style-type: none;
    padding-left: 60px; /* Gesamte Liste wird nach rechts eingerückt */
}

ul li {
    margin-bottom: 5px;
    padding-left: 10px; /* Einzelne Einträge werden weiter nach rechts eingerückt */
}
