body {
    font-family: sans-serif;
    margin: 0;
    padding: 20px;
    background: #000;
    color: #fff;
    font-size: 1.2em;
}

.container {
    max-width: 600px;
    margin: auto;
    background: #222;
    padding: 20px;
    border-radius: 10px;
    text-align: center;         /* Text und Inline-Elemente zentrieren */
    display: flex;              /* Flexbox-Layout */
    flex-direction: column;     /* Elemente untereinander */
    align-items: center;        /* Horizontal zentrieren */
}

.form-section {
    background-color: #111;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
}

h1 {
	font-size: 1.3em;
}
	
label, select, textarea, button {
    display: block;
    width: 80%;                 /* Schmaler als 100% für bessere Optik */
    margin: 10px auto;          /* Zentriert und mit Abstand */
    font-size: 1.0em;
    text-align: center;           /* Labels linksbündig */
}

select, textarea {
    padding: 10px;
    background: #111;
    color: #fff;
    border: 1px solid #555;
    border-radius: 5px;
}

textarea {
    resize: vertical;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 2px;
    font-size: clamp(1.4em, 5vw, 2.2em);
    margin: 10px 0;
    flex-wrap: nowrap;
}

.rating input[type="radio"] {
    display: none;
}

.rating label {
    color: #444;
    cursor: pointer;
    transition: color 0.2s;
}

.rating input[type="radio"]:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
    color: #f5b301;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 12px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	text-align: center;
    width: 80%;                /* Gleiche Breite wie Eingabefelder */
    margin: 20px auto 0;
}

button:hover {
    background-color: #45a049;
}
	
}
