/* audit-quiz.css — Estilos específicos del Audit Quiz */

.quiz-step {
  animation: fadeIn 300ms ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-progress-wrapper {
  padding: var(--s-sm) 0;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
  margin-top: var(--s);
}

.quiz-options .btn-secondary {
  font-size: 15px;
  padding: 16px 20px;
  text-align: left;
  position: relative;
  padding-left: 56px;
}

.quiz-options .btn-secondary::before {
  content: attr(data-index);
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(92, 184, 46, 0.15);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: var(--g);
  border: 1px solid var(--g);
}

.quiz-options .btn-secondary.selected::before {
  background: #000;
  color: var(--g);
  border-color: #000;
}

#score-display {
  font-family: var(--f-display);
}

#tier-display[data-tier="sql"] { color: #22C55E; }
#tier-display[data-tier="mql"] { color: #F59E0B; }
#tier-display[data-tier="education"] { color: #6B7280; }

select.magnet-input {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%235CB82E' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.quiz-loading {
  text-align: center;
  padding: var(--s-xl) 0;
}
