<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Combining quiz-display.css, modern-quiz.css, and render-quiz-styles.css */

/* Quiz Display Section */
.quiz-dashboard {
  background-color: var(--quiz-background-light);
  border-radius: var(--quiz-border-radius-lg);
  padding: var(--quiz-spacing-lg);
}

.quiz-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--quiz-spacing-lg);
  flex-wrap: wrap;
}

.quiz-dashboard-header h2 {
  margin: 0;
  color: var(--quiz-primary-color);
}
.music-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background: #fff;
    border: 2px solid #007bff;
    color: #007bff;
    padding: 8px 15px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.music-toggle:hover {
    background: #007bff;
    color: #fff;
}
.quiz-filters {
  display: flex;
  gap: var(--quiz-spacing-md);
  flex-wrap: wrap;
  margin: var(--quiz-spacing-md) 0;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-group label {
  font-size: var(--quiz-font-size-sm);
  margin-bottom: var(--quiz-spacing-xs);
  font-weight: 600;
}

.filter-group select,
.filter-group input {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: var(--quiz-border-radius-sm);
}

/* Questions &amp; Options Display */
.questions-container {
  margin-top: var(--quiz-spacing-lg);
}

.question {
  background-color: white;
  border-radius: var(--quiz-border-radius-md);
  padding: var(--quiz-spacing-lg);
  margin-bottom: var(--quiz-spacing-lg);
  box-shadow: var(--quiz-shadow-sm);
}

.question h3 {
  margin-top: 0;
  color: var(--quiz-primary-color);
  font-size: var(--quiz-font-size-lg);
  border-bottom: 1px solid #eee;
  padding-bottom: var(--quiz-spacing-sm);
}

.question-content {
  margin-top: var(--quiz-spacing-md);
}

.options {
  margin-top: var(--quiz-spacing-md);
}

.option {
  display: block;
  padding: var(--quiz-spacing-md);
  margin-bottom: var(--quiz-spacing-sm);
  border: 1px solid #eee;
  border-radius: var(--quiz-border-radius-sm);
  cursor: pointer;
  transition: all var(--quiz-transition-fast);
}

.option:hover {
  background-color: rgba(58, 86, 228, 0.05);
  border-color: var(--quiz-primary-color);
}

.option input[type="radio"] {
  margin-right: var(--quiz-spacing-sm);
}

/* Quiz Navigation */
.quiz-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: var(--quiz-spacing-lg);
}

/* Quiz Results Display */
.quiz-results {
  background-color: white;
  border-radius: var(--quiz-border-radius-md);
  padding: var(--quiz-spacing-lg);
  margin-top: var(--quiz-spacing-lg);
  box-shadow: var(--quiz-shadow-md);
}

.result-summary {
  text-align: center;
  margin-bottom: var(--quiz-spacing-lg);
}

.result-score {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--quiz-primary-color);
}

.result-grade {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  margin: var(--quiz-spacing-md);
  padding: var(--quiz-spacing-sm) var(--quiz-spacing-md);
  border-radius: 50%;
  background-color: var(--quiz-accent-color);
  color: white;
}

.result-message {
  font-size: var(--quiz-font-size-lg);
  margin: var(--quiz-spacing-md) 0;
}

/* Modern Quiz Elements */
.question-progress {
  display: flex;
  margin-bottom: var(--quiz-spacing-lg);
}

.progress-step {
  flex: 1;
  height: 4px;
  background-color: #eee;
  margin: 0 2px;
}

.progress-step.active {
  background-color: var(--quiz-primary-color);
}

.progress-step.correct {
  background-color: var(--quiz-success);
}

.progress-step.incorrect {
  background-color: var(--quiz-error);
}

/* Feedback animation */
@keyframes fadeInOut {
  0% { opacity: 0; transform: translateY(-20px); }
  20% { opacity: 1; transform: translateY(0); }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

.feedback-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.feedback-message {
  padding: var(--quiz-spacing-md) var(--quiz-spacing-lg);
  border-radius: var(--quiz-border-radius-md);
  background-color: white;
  box-shadow: var(--quiz-shadow-lg);
  animation: fadeInOut 2s forwards;
}

.feedback-correct {
  border-left: 4px solid var(--quiz-success);
}

.feedback-incorrect {
  border-left: 4px solid var(--quiz-error);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .quiz-dashboard-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .quiz-filters {
    width: 100%;
    margin-top: var(--quiz-spacing-md);
  }
  
  .filter-group {
    width: 100%;
  }
}</pre></body></html>