.custom-row {
    margin-top: 210px;
    /* Ändern Sie den Wert entsprechend Ihrer Anforderungen */
}

.bild {
    margin-left: 20px;
    ;
}


/* CSS für die Navigationsleiste */
.navbar {
    /* background-image: url('Images/heimatfreunde.jpg'); */
    /* Hintergrundbild für die Navigationsleiste */
    /* background-size: 100% 100%; */
    /* background-size: cover; */
    /* justify-content: space-between; */
    /* background-color:rgb(255 105 0); ; */
    background-color: rgb(225 92 13);
    padding: 10px;
    display: flex;
    margin-bottom: 256.px;
    justify-content: left;
    /* align-items: center; */

}

.navbar img {
    height: 150px;
    /* Höhe des Logos anpassen */
    margin-left: 5px;
    /* Abstand zum linken Rand */
    width: 380px;
}

.navbar button,
.navbar select {
    /* background-color: transparent; */

    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin: 3px 5px;
    font-size: 16px;
}

.navbar button:hover,
.navbar select:hover {
    /* background-color: rgb(255 105 0); */
    background-color: rgba(255, 255, 255, 0.2);
}

/* Hintergrundfarbe für das Dropdown-Menü */
/* Hintergrundfarbe für das Dropdown-Menü */
.navbar select:hover {
    background-color: rgba(0, 0, 0, 0.2);
    /* Hintergrundfarbe der Navigationsleiste */
}

/* CSS für den Inhalt */
.content {
    padding: 20px;
    text-align: center;
}

select[name="unterverzeichnis"] {
    /* appearance: none; */
    /* Verhindert die Standarddarstellung des Dropdown-Pfeils */
    margin-left: 33px;

    background-color: orange;
    /* Ändert die Hintergrundfarbe der Select-Box */
    padding: 5px;
    /* Hinzufügen von Padding für bessere Lesbarkeit */
    border: none;
    /* Entfernt die Standard-Border */
    border-radius: 5px;
    /* Runde Ecken für eine bessere Ästhetik */
}



select[name="selectauswahl"] {
    /* appearance: none; */
    /* Verhindert die Standarddarstellung des Dropdown-Pfeils */
    margin-left: 33px;

    background-color: orange;
    /* Ändert die Hintergrundfarbe der Select-Box */
    padding: 5px;
    /* Hinzufügen von Padding für bessere Lesbarkeit */
    border: none;
    /* Entfernt die Standard-Border */
    border-radius: 5px;
    /* Runde Ecken für eine bessere Ästhetik */
}



select[name="suche"] {
    /* appearance: none; */
    /* Verhindert die Standarddarstellung des Dropdown-Pfeils */
    margin-left: 33px;

    background-color: orange;
    /* Ändert die Hintergrundfarbe der Select-Box */
    padding: 5px;
    /* Hinzufügen von Padding für bessere Lesbarkeit */
    border: none;
    /* Entfernt die Standard-Border */
    border-radius: 5px;
    /* Runde Ecken für eine bessere Ästhetik */

}

/* neu */
#navigation {
    opacity: 0;
}

#navigation:checked~ul {
    display: block;
}

#navigation:checked~label .burgericon {
    margin-top: 15px;
}

#navigation:checked~label .burgericon div:first-of-type {
    rotate: 45deg;
}

#navigation:checked~label .burgericon div:last-child {
    rotate: -45deg;
    margin-top: -10px;
}

#navigation:checked~label .burgericon div:nth-child(2) {
    display: none;
}


#hb {
    margin-left: 30px;
    text-align: center !important;
    /* Zentriert den Text */
}

#hb h1 {
    margin-left: 20px;
    color: rgba(255, 166, 0, 0.863);
    /* Setzt die Textfarbe auf Orange */
}

.radio-buttons {
    margin-bottom: 10px;
    /* Abstand zwischen den Radio-Buttons und der Select-Box */
}

/* Stil für die Radio-Buttons */
.radio-buttons label {
    display: block;
    margin: 10px;
    color: white;
    /* Textfarbe der Radio-Buttons */
}

.radio-buttons button {
    border-radius: 5px;
    height: 10px;
    display: block;
    /* margin: 10px; */
    color: white;
    text-align: justify;
}

.white-text {
    color: white !important;
}

.goback {
    background-color: orange;
    border-radius: 5px;
    /* Runde Ecken für eine bessere Ästhetik */
    padding: 5px;
}

.btnwidth {
    width: 300px;
    margin-top: 10px;
    border-radius: 5px;
    margin-top: 20px;
}

.author-info {
    /* position: absolute;
    bottom: 5px;
    right: 10px; */
    font-size: 12px;
    color: #eaec69;
}

.suchenach {
    margin-left: 10px;
    width: 200px;
}

.buttonsuche {
    background-color: orange;
    color: #eaec69;
    height: 10px !important;
}


/* CSS für die Reaktion auf kleinere Bildschirme */
@media only screen and (max-width:600px) {

    .navbar {
        flex-direction: column;
        align-items: center;
    }

    .radio-buttons {
        margin-top: 10px;
        /* Optional: Füge etwas Abstand hinzu */
    }



}