/* Quiz Styles */
.quiz-container {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.quiz-title {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.quiz-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 24px;
}

.options-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.option {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.option:hover {
  border-color: #d1d1d1;
  background-color: #fcfcfc;
}

.option.selected {
  border-color: var(--primary-color);
  background-color: rgba(254, 44, 85, 0.05);
}

.option-content {
  display: flex;
  align-items: center;
  flex: 1;
}

.option-emoji {
  font-size: 24px;
  margin-right: 12px;
  min-width: 32px;
  text-align: center;
}

.option-text {
  font-size: 16px;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.option.selected .custom-checkbox {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.custom-checkbox::after {
  content: "";
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}

.option.selected .custom-checkbox::after {
  opacity: 1;
}

.continue-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: auto;
}

.continue-btn:disabled {
  background-color: #d1d1d1;
  cursor: not-allowed;
}

.continue-btn:not(:disabled):hover {
  background-color: var(--primary-hover);
}

.bonus-text {
  text-align: center;
  color: var(--reward-color);
  font-weight: 500;
  margin-top: 16px;
  font-size: 15px;
}

.divider {
  margin: 24px 0;
  height: 1px;
  background-color: var(--border-color);
}