#quiz-container {
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Airbnb Cereal', Arial, sans-serif;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.quiz-step { display: none; }
.quiz-question { margin-bottom: 20px; }
.quiz-question h4 { font-size: 18px; margin-bottom: 10px; font-weight: 600; color: #333; }
.quiz-options label { display: block; background: #f7f7f7; padding: 10px; border-radius: 10px; margin-bottom: 8px; cursor: pointer; transition: background 0.2s; }
.quiz-options input[type="radio"] { margin-right: 8px; }
.quiz-options label:hover { background: #e6f0ff; }
#quiz-navigation { display: flex; justify-content: space-between; margin-top: 20px; }
#quiz-navigation button { background: #007aff; border: none; color: #fff; padding: 10px 20px; border-radius: 10px; cursor: pointer; font-size: 16px; font-weight: 600; transition: background 0.2s; }
#quiz-navigation button:hover { background: #005bb5; }
#quiz-progress { margin-top: 15px; font-size: 14px; text-align: right; color: #666; }
.quiz-result { text-align: center; font-size: 18px; font-weight: 500; padding: 20px; border-radius: 10px; background: #f9f9f9; color: #333; }
