/* Custom Quiz Styles to ensure consistency */

/* Quiz option styling */
.quiz-option-0 {
  background-color: #dcfce7 !important; /* light green */
}
.quiz-option-0.selected {
  background-color: #22c55e !important; /* green */
  color: white !important;
}

.quiz-option-1 {
  background-color: #dcfce7 !important; /* light green */
}
.quiz-option-1.selected {
  background-color: #22c55e !important; /* green */
  color: white !important;
}

.quiz-option-2 {
  background-color: #fef9c3 !important; /* light yellow */
}
.quiz-option-2.selected {
  background-color: #eab308 !important; /* yellow */
  color: white !important;
}

.quiz-option-3 {
  background-color: #ffedd5 !important; /* light orange */
}
.quiz-option-3.selected {
  background-color: #f97316 !important; /* orange */
  color: white !important;
}

.quiz-option-4 {
  background-color: #fee2e2 !important; /* light red */
}
.quiz-option-4.selected {
  background-color: #ef4444 !important; /* red */
  color: white !important;
}

/* Question card styling */
.question-card {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
}

.question-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Quiz option grid */
.option-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

/* Quiz option item */
.option-item {
  width: 100%;
  text-align: center;
  padding: 0.5rem 0;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.option-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Quiz option label */
.option-label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
}
