/* ===== On-page subject review quiz ===== */
.pq-card { text-align: left; }
.pq-bar { height: 12px; background: #eee; border-radius: 999px; overflow: hidden; margin: 8px 0 12px; }
.pq-bar > div { height: 100%; background: linear-gradient(90deg,#43c463,#4facfe); transition: width .3s; }
.pq-meta { display: flex; justify-content: space-between; font-size: .9rem; color: #666; margin-bottom: 10px; }
.pq-q { font-size: 1.25rem; font-weight: bold; margin: 8px 0 16px; line-height: 1.4; color: #2b2b45; }
/* Reading passages: preserve the poem/script line breaks and keep them readable. */
.pq-passage {
  background: #fbf9ff; border: 2px solid #e7e2ff; border-left: 6px solid #7b6cf6;
  border-radius: 12px; padding: 14px 16px; margin: 8px 0 14px;
  font-size: 1.02rem; line-height: 1.6; color: #33334d;
  white-space: pre-wrap; max-height: 42vh; overflow-y: auto;
}
.pq-choices { display: grid; gap: 10px; }
/* main.css makes every button white text on a gradient; force readable answers */
.pq-choice {
  background: #fff !important; color: #2b2b45 !important;
  border: 3px solid #e7e2ff; border-radius: 14px; padding: 14px 16px;
  font-size: 1.05rem; font-weight: bold; text-align: left; cursor: pointer;
  font-family: inherit; margin: 0; box-shadow: none; opacity: 1 !important; width: 100%;
}
.pq-choice:hover:not(:disabled) { border-color: #7b6cf6; transform: translateY(-2px); }
.pq-choice:disabled { cursor: default; transform: none; }
.pq-choice.correct { background: #e6ffed !important; border-color: #43c463; color: #0a7a34 !important; }
.pq-choice.wrong   { background: #ffe6e6 !important; border-color: #ff6b6b; color: #a12020 !important; }
.pq-fb { margin-top: 14px; padding: 12px; border-radius: 12px; font-weight: bold; }
.pq-fb.good { background: #e6ffed; color: #0a7a34; }
.pq-fb.bad  { background: #fff3e6; color: #a35b00; }
.pq-next {
  background: #7b6cf6 !important; color: #fff !important; border: none;
  border-radius: 14px; padding: 13px 24px; font-size: 1rem; font-weight: bold;
  cursor: pointer; font-family: inherit; margin: 12px 6px 0 0;
}
.pq-review { margin-top: 16px; text-align: left; }
.pq-review h4 { margin-bottom: 8px; }
.pq-review-item { background: #fff7ed; border-left: 5px solid #ffb020; border-radius: 10px; padding: 12px; margin: 8px 0; line-height: 1.5; }

/* Center the start button and the retake button under the quiz. */
#pageQuizBody > .pq-next { display: block; margin: 12px auto 0; }
