body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

h1 {
    color: #333;
}

form {
    max-width: 600px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: inline-grid;
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="radio"] {
    margin-right: 5px;
    transform: scale(1.5); /* Increase the size of the radio button */
    vertical-align: middle; /* Align the radio button vertically with the label */
}

select {
    height: 100px;
}

button[type="submit"] {
    background-color: rgba(0, 0, 139, 0.716);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: rgba(33, 33, 213, 0.75);
}

.additional-questions-morning,
.additional-questions-evening {
    display: none;
    margin-top: 10px;
}

.additional-questions-morning label,
.additional-questions-evening label {
    display: block;
    margin-bottom: 8px;
}

.additional-questions-morning select,
.additional-questions-evening select {
    width: 100%;
    height: 120px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}
