/* Statistics Grade 3 Mock Test Specific Styles */

/* Consent Screen Styles */
.consent-list {
    padding-left: 1.2rem;
}

.consent-checkbox {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

.consent-checkbox input:checked ~ label {
    color: #2196F3;
    font-weight: 600;
}

/* Progress Bar Styles */
.progress-container {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 60px;
    z-index: 100;
}

.progress-info {
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2196F3;
}

/* Question Display Styles */
.question-header {
    border-bottom: 2px solid #f1f3f4;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.question-title {
    color: #2196F3;
    margin-bottom: 0.5rem;
}

.question-field {
    background: #e3f2fd;
    color: #1565c0;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.question-statement {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #333;
}

/* Choice Styles */
.choices-container {
    margin-bottom: 2rem;
}

.choice-item {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.choice-item:hover {
    border-color: #2196F3;
    background: #e3f2fd;
}

.choice-item.selected {
    border-color: #2196F3;
    background: #2196F3;
    color: white;
}

/* Question Navigation */
.question-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Results Screen Styles */
.score-section {
    text-align: center;
    background: linear-gradient(135deg, #2196F3, #64B5F6);
    color: white;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.total-score {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.score-value {
    font-size: 4rem;
    font-weight: bold;
    margin-right: 0.5rem;
}

.score-total {
    font-size: 1.5rem;
    opacity: 0.9;
}

.score-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 1.1rem;
}

/* Analysis Section Styles */
.analysis-section {
    margin-bottom: 2rem;
}

.analysis-title {
    color: #2196F3;
    margin-bottom: 1.5rem;
    text-align: center;
}

.category-details {
    padding: 1rem;
}

.category-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 4px solid #2196F3;
}

.category-item h6 {
    margin-bottom: 0.5rem;
    color: #333;
}

.category-score {
    font-size: 1.1rem;
    font-weight: 600;
}

.category-score .score {
    color: #2196F3;
    font-size: 1.3rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .score-value {
        font-size: 3rem;
    }

    .score-details {
        flex-direction: column;
        gap: 0.5rem;
    }

    .question-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .question-actions button {
        width: 100%;
    }
}