/*  CSS für die Umfrage-Seite (survey.html)
    Autor: Schreiber, Albert
*/

/* Basiseinstellungen */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 60px;
    background-color: #f4f4f4;
}

/* Hauptlayout */
main {
    grid-column: 1 / span 2;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Abstimmungsbereich */
#abstimmung h2,
#abstimmung > p:first-of-type {
    text-align: center;
}

/* Formular */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form p {
    margin-bottom: 15px;
}

form label {
    margin-right: 10px;
    font-weight: bold;
}

form input[type="text"] {
    padding: 8px;
    font-size: 1rem;
    width: 80%;
    max-width: 300px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

form input[type="radio"], form select {
    margin-top: 10px;
}

form button {
    padding: 10px 20px;
    font-size: 1rem;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #555;
}