/* ============================================
   Quiz CSS - Quiz-specific styles
   ============================================ */

/* Quiz search hero section */
.quiz-search-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Quiz study hero section */
.quiz-study-hero {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Quiz my quizzes hero section */
.quiz-my-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Quiz study page specific styles */
.question-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 16px 16px 0 0;
    font-weight: 600;
}

.choice-box {
    background-color: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.choice-box.correct-choice {
    background: linear-gradient(135deg, #d1f4e0 0%, #e8f8f0 100%);
    border-color: #28a745;
}

[data-theme="dark"] .choice-box.correct-choice {
    background: linear-gradient(135deg, #1a4d2e 0%, #2a5d3e 100%);
    border-color: #4ade80;
}

.answer-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-weight: 600;
}

.explanation-section {
    background-color: var(--bg-secondary);
    border-left: 4px solid #667eea;
}

.answer-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe8a1 100%);
    border-left: 4px solid #ffc107;
}

[data-theme="dark"] .answer-section {
    background: linear-gradient(135deg, #4d4420 0%, #5d5430 100%);
}

/* 정답/해설 숨기기 */
.answers-hidden .answer-badge {
    display: none !important;
}

.answers-hidden .choice-box.correct-choice {
    background: var(--bg-secondary) !important;
    border-color: var(--border-color) !important;
}

.answers-hidden .answer-section {
    display: none !important;
}

.explanations-hidden .explanation-section {
    display: none !important;
}

.answers-hidden .report-warning {
    display: none !important;
}

