.review-content {
    padding: 20px 0;
}

.question-review-container {
    max-width: 800px;
    margin: 0 auto;
}

.review-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.question-review {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.question-number {
    font-weight: 600;
    color: #444;
}

.question-text {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
}

.answers-container {
    margin-top: 15px;
}

.answer-option {
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: all 0.2s ease;
}

.answer-option.border-success {
    border: 1px solid #00c07f;
}

.answer-text {
    display: flex;
    align-items: center;
}

.answer-explanation {
    margin-top: -5px;
    margin-bottom: 15px;
    padding: 12px 15px;
    background-color: #f0f7ff;
    border-radius: 8px;
    font-size: 14px;
    color: #555;
} 