/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f7fa;
    color: #333;
}

header {
    background: #007BFF;
    color: white;
    padding: 20;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #007BFF;
}

h2 {
    color: #007BFF;
    font-size: 16px; /* Smaller font size for questions */
    margin-bottom: 8px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
}

select, input {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background: #007BFF;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #0056b3;
}

footer {
    text-align: center;
    padding: 15px;
    background: #f0f0f0;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

/* Start Again Button Styling */
.start-again-button {
    display: inline-block;
    text-align: center;
    background: #28a745;
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease-in-out;
}

.start-again-button:hover {
    background: #218838;
}

/* Optional: Further reduce padding for smaller questions if needed */
.form-section {
    margin-bottom: 15px;
    font-size: 12px; /* Even smaller text size for question descriptions */
}
