body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

#autor {
    position: relative;
    background: url('../images/anon_green_head_b.png') no-repeat center center;
    background-size: cover;
    /* Bild an die Button-Größe anpassen */
    color: white;
    /* Textfarbe für bessere Lesbarkeit */
    /* opacity: 0; */
}

.header {
    display: flex;
    justify-content: flex-start;
    /* Buttons und Box linksbündig */
    align-items: flex-start;
    padding: 20px;
    background-color: #f0f0f0;
    flex-wrap: wrap;
    /* Flexibles Layout für kleinere Bildschirme */
    background-color: #1f4e24;
    color: white;
}

/* Buttons und Auswahlbox links vom Bild und Text */
.button-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 20px;
    /* Abstand vom Bild und Text */
}

/* Buttons nebeneinander */
.button-row {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    /* Flexibles Layout für kleinere Bildschirme */
}

.auswahl {
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    width: 150px;
    font-weight: bold;
}

.auswahl:hover {
    background-color: #479fbb;
}

/* Auswahlbox */
.auswahlbox {
    background-color: #4CAF50;
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

.auswahlbox:hover {
    background-color: #479fbb;
}

.themen-dropdown {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
}

.themen-dropdown :hover {
    background-color: #4CAF50;
}


select {
    width: 150px;
    padding: 10px;
}

/* Bild und Text untereinander */
.image-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-text-container img {
    max-width: 230px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
    /* Abstand zum Text */
}

.text-section {
    text-align: center;
}

.text-section p {
    margin: 5px 0;
}

/* Hauptinhalt */
.main-content {
    padding: 20px;
}


footer {
    background-color: #1f4e24;
}

/* Responsives Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: center;
        padding: 0px;
    }

    .image-text-container img {
        max-width: 100px;
        height: auto;
        border-radius: 50%;
        margin-bottom: 10px;
        /* Abstand zum Text */
    }

    .button-box {
        align-items: center;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .button-row {
        justify-content: center;
        flex-direction: column;
        /* Buttons untereinander in mobiler Ansicht */
    }
}