body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f4f4f4;
}

h1 {
    color: #333;
}

.div-text {
    padding-right: 50px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
    max-width: 30%;
}

.question-group {
    display: flex;
    margin-bottom: 10px;
}

.question-group .label {
    padding-left: 20px;
}

label {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    margin-right: 10px;
}

input[type="text"] {
    width: 100%;
    padding: 8px;
    margin: 5px 0 22px 0;
    display: inline-block;
    border: none;
    background: #e1e1e1;
}

input[type="text"]:focus {
    background-color: #ddd;
    outline: none;
}

button[type="submit"] {
    background-color: #d3b36b;
    color: #000000;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 1.5em;
}

button[type="submit"]:hover {
    background-color: #893936;
    color: #ffffff;
}

#result.hai {
    background-color: #d3b36b;
    color: #000000;
    /* Weitere Stile für die Kategorie Hai */
}

#result.delphin {
    background-color: #d3b36b;
    color: #000000;
    /* Weitere Stile für die Kategorie Delphin */
}

#result.wal {
    background-color: #d3b36b;
    color: #000000;
    /* Weitere Stile für die Kategorie Wal */
}

#result.goldfisch {
    background-color: #d3b36b;
    color: #000000;
    /* Weitere Stile für die Kategorie Goldfisch */
}

/* Gemeinsame Stile für das Ergebnis-Element */
#result {
    padding: 20px;
    margin: 20px;
    border: 1px solid #ddd;
    display: block; /* Zeigt das Ergebniselement an, falls es zuvor ausgeblendet wurde */
}

.auswertung-einruecken {
    padding-left: 30px;
}