/* Basic SAT-like UI styling */

.satvt-exam-container {
  max-width: 960px;
  margin: 20px auto;
  background: #ffffff;
  border: 1px solid #d1d5db;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.satvt-exam-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 20px;
  border-bottom: 1px solid #e5e7eb;
  background: #f9fafb;
}

.satvt-exam-title {
  font-weight: 600;
  font-size: 18px;
}

.satvt-exam-section-label {
  font-size: 14px;
  color: #4b5563;
}

.satvt-timer {
  font-weight: 600;
  font-size: 14px;
  color: #b91c1c;
}

.satvt-question-list {
  padding: 16px 20px 24px;
}

.satvt-passage-block {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.satvt-passage-header {
  margin-bottom: 12px;
}

.satvt-passage-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
}

.satvt-passage-title {
  font-weight: 600;
  margin: 4px 0 8px;
}

.satvt-passage-text {
  padding: 10px 12px;
  border-left: 3px solid #9ca3af;
  background: #f9fafb;
  font-size: 14px;
  line-height: 1.6;
  color: #111827;
}

.satvt-question-card {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  column-gap: 8px;
  padding: 12px 0;
}

.satvt-question-number {
  font-weight: 600;
  text-align: right;
  padding-top: 4px;
  color: #111827;
}

.satvt-question-text {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.satvt-choices {
  margin-top: 4px;
}

.satvt-choice-row {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  margin-bottom: 4px;
  cursor: pointer;
}

.satvt-choice-row input[type='radio'] {
  margin-right: 6px;
  margin-top: 3px;
}

.satvt-choice-letter {
  font-weight: 600;
  margin-right: 4px;
}

.satvt-choice-text {
  flex: 1;
}

.satvt-exam-footer {
  padding: 12px 20px 16px;
  border-top: 1px solid #e5e7eb;
  text-align: right;
  background: #f9fafb;
}
