/* Simple, reliable quick check styles */
.mylearn-quick-check {
  margin: 20px 0;
  border: 2px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
}

.mylearn-quick-check-header {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

.mylearn-quick-check-question {
  margin: 0 0 15px 0;
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

.mylearn-quick-check-options {
  display: block;
}

.mylearn-quick-check-option {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mylearn-quick-check-option:hover {
  background: #f0f0f0;
  border-color: #999;
}

.mylearn-quick-check-option.selected {
  background: #e3f2fd;
  border-color: #2196f3;
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
}

.mylearn-quick-check-option-text {
  display: block;
  cursor: pointer;
  margin: 0;
}

.mylearn-quick-check-feedback {
  margin-top: 10px;
  padding: 10px;
  border-radius: 4px;
  display: none;
  font-weight: 500;
  font-size: 14px;
}

.mylearn-quick-check-feedback.correct {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.mylearn-quick-check-feedback.incorrect {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Show feedback when option is selected */
.mylearn-quick-check-option.selected .mylearn-quick-check-feedback {
  display: block;
}
