/* --------------------------------------------------------------
   Simply English Assessment – Front‑end Styles
   -------------------------------------------------------------- */

/* Container */
.sea-assessment-container {
    max-width: 680px;
    margin: 0 auto;
    font-family: system-ui, sans-serif;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Headings */
.sea-assessment-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Form elements */
.sea-assessment-container label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.sea-assessment-container input[type="text"],
.sea-assessment-container input[type="number"],
.sea-assessment-container input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

/* Timer */
#sea-timer {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e74c3c;
    margin-bottom: 15px;
    text-align: center;
}

/* Stage indicator */
#sea-stage {
    margin-bottom: 15px;
}

/* Question styling */
.sea-question {
    margin-bottom: 20px;
}

.sea-question-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.sea-options label {
    display: block;
    margin: 8px 0;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.sea-options label:hover {
    background: #f5f5f5;
}

.sea-options input[type="radio"] {
    margin-right: 10px;
}

/* Button styling */
.sea-submit {
    display: block;
    width: 100%;
    padding: 12px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.sea-submit:hover {
    background: #2980b9;
}

/* Summary section */
#sea-summary {
    margin-top: 20px;
}

#sea-summary h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

#sea-summary p {
    margin: 10px 0;
}

/* Responsive adjustments */
@media (max-width: 500px) {
    .sea-assessment-container {
        padding: 15px;
    }
}