/* Simple English Layout Classes */

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    padding-top: 50px;
}

.quiz-container {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 450px;
    width: 100%;
}

.quiz-step {
    display: none; /* Hidden by default */
}

.active-step {
    display: block; /* Only shown when active */
}

.question-text {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-label {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.option-label:hover {
    background-color: #f0f9ff;
    border-color: #007bff;
}

.option-label input {
    margin-right: 10px;
}

.submit-button {
    margin-top: 20px;
    width: 100%;
    padding: 15px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
}

.submit-button:hover {
    background-color: #218838;
}