/* ============================================================
   Quiz Page — quiz.css
   Supplemental styles (core quiz styles live in main.css)
   ============================================================ */

.quiz-progress .progress-label {
  font-size: 0.875rem;
  color: var(--flceo-text);
}

.quiz-progress .progress-pct {
  font-size: 0.8125rem;
  font-weight: 600;
}

.answer-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.answer-option:last-child {
  margin-bottom: 0;
}

.answer-option:focus-visible {
  outline: 2px solid var(--flceo-primary);
  outline-offset: 2px;
}

.answer-option.selected::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--flceo-primary);
  margin-right: 0.625rem;
  flex-shrink: 0;
}

.answer-option.correct::before {
  background: var(--flceo-success);
}

.answer-option.incorrect::before {
  background: var(--flceo-danger);
}

.answer-option[disabled] {
  opacity: 0.75;
  pointer-events: none;
}

#submitQuiz:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.result-hero h2 {
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .result-hero h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .question-block {
    padding: 1.125rem;
  }

  .answer-option {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    min-height: 48px;
  }

  .result-hero {
    padding: 2rem 1rem;
  }

  .result-hero .result-icon svg {
    width: 48px;
    height: 48px;
  }

  .result-hero .result-score {
    font-size: 2rem;
  }
}
