.entry-report {
  --entry-report-canvas: var(--rostra-canvas, #030507);
  --entry-report-surface: var(--rostra-surface, #0b0f14);
  --entry-report-raised: var(--rostra-surface-raised, #11161d);
  --entry-report-inset: var(--rostra-surface-inset, #070a0f);
  --entry-report-control: var(--rostra-surface-control, #151b23);
  --entry-report-selected: var(--rostra-surface-selected, #121a26);
  --entry-report-text: var(--rostra-text-primary, #ffffff);
  --entry-report-text-secondary: var(--rostra-text-secondary, #c7ced8);
  --entry-report-text-muted: var(--rostra-text-muted, #87919f);
  --entry-report-border: var(--rostra-border, #242a33);
  --entry-report-border-strong: var(--rostra-border-strong, #38414d);
  --entry-report-focus: var(--rostra-focus, #6da8ff);
  --entry-report-success: var(--rostra-success, #42c67a);
  --entry-report-warning: var(--rostra-warning, #f2b84b);
  --entry-report-danger: var(--rostra-danger, #ff6b5f);
  --entry-report-radius: var(--rostra-radius-md, 6px);
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: transparent;
  color: var(--entry-report-text);
  font-family: var(--font-sans, "Avenir Next", "Segoe UI", sans-serif);
}

.entry-report,
.entry-report * {
  box-sizing: border-box;
}

.entry-report h1,
.entry-report h2,
.entry-report h3,
.entry-report p {
  margin: 0;
}

.entry-report button,
.entry-report input,
.entry-report select,
.entry-report textarea {
  font: inherit;
}

.entry-report .entry-report__sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.entry-report .entry-report__score-panel > h2,
.entry-report .entry-report__correction-labels,
.entry-report .entry-report__activity-name,
.entry-report .entry-report__notes > span {
  color: var(--entry-report-text-muted);
  font-family: var(--font-label, var(--font-mono, monospace));
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.entry-report .entry-report__button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid var(--entry-report-border-strong);
  border-radius: var(--entry-report-radius);
  background: var(--entry-report-control);
  color: var(--entry-report-text-secondary);
  font-size: 13px;
  font-weight: 720;
  line-height: 1;
  cursor: pointer;
  transition: border-color 150ms ease, background-color 150ms ease, color 150ms ease, transform 100ms ease;
}

.entry-report .entry-report__button:hover:not(:disabled) {
  border-color: color-mix(in srgb, var(--entry-report-focus) 70%, var(--entry-report-border));
  background: color-mix(in srgb, var(--entry-report-control) 82%, var(--entry-report-focus));
  color: var(--entry-report-text);
}

.entry-report .entry-report__button:active:not(:disabled) {
  transform: translateY(1px);
}

.entry-report .entry-report__button:focus-visible,
.entry-report .entry-report__student-select:focus-visible,
.entry-report select:focus-visible,
.entry-report input:focus-visible,
.entry-report textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--entry-report-focus) 76%, transparent);
  outline-offset: 2px;
}

.entry-report .entry-report__button:disabled,
.entry-report .entry-report__student-select:disabled {
  cursor: not-allowed;
  opacity: 0.43;
}

.entry-report .entry-report__button--primary {
  border-color: color-mix(in srgb, var(--entry-report-success) 72%, var(--entry-report-border));
  background: var(--entry-report-success);
  color: #04110a;
}

.entry-report .entry-report__button--primary:hover:not(:disabled) {
  border-color: color-mix(in srgb, var(--entry-report-success) 84%, white);
  background: color-mix(in srgb, var(--entry-report-success) 86%, white);
  color: #04110a;
}

.entry-report .entry-report__button--square,
.entry-report .entry-report__button--square-primary {
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
}

.entry-report .entry-report__button--square-primary {
  border-color: var(--entry-report-focus);
  background: color-mix(in srgb, var(--entry-report-focus) 12%, var(--entry-report-control));
  color: var(--entry-report-text);
}

.entry-report .entry-report__button--square > span:last-child,
.entry-report .entry-report__button--square-primary > span:last-child,
.entry-report .entry-report__button--stepper > span:last-child {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.entry-report .entry-report__button-icon {
  display: inline-grid;
  width: 19px;
  height: 19px;
  place-items: center;
  flex: 0 0 auto;
}

.entry-report .entry-report__button-icon > svg {
  width: 100%;
  height: 100%;
}

.entry-report .entry-report__workspace {
  display: grid;
  height: 100%;
  min-width: 0;
  min-height: 0;
  grid-template-columns: minmax(330px, 372px) minmax(0, 1fr);
  gap: 12px;
}

.entry-report .entry-report__score-panel,
.entry-report .entry-report__correction-panel {
  min-width: 0;
  min-height: 0;
  border: 1px solid var(--entry-report-border-strong);
  border-radius: var(--entry-report-radius);
  background: var(--entry-report-surface);
}

.entry-report .entry-report__score-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  padding: 12px;
}

.entry-report .entry-report__score-panel > h2 {
  padding-block: 4px 0;
}

.entry-report .entry-report__student-list {
  display: grid;
  min-height: 0;
  align-content: start;
  gap: 8px;
  overflow: auto;
  padding-right: 2px;
}

.entry-report .entry-report__student-row {
  display: grid;
  min-height: 64px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 5px 8px 5px 10px;
  border: 1px solid var(--entry-report-border);
  border-radius: var(--entry-report-radius);
  background: var(--entry-report-inset);
}

.entry-report .entry-report__student-row--selected {
  border-color: var(--entry-report-text);
  box-shadow: inset 3px 0 0 var(--entry-report-activity-accent, var(--entry-report-focus));
}

.entry-report .entry-report__student-row--copy-complete {
  border-color: color-mix(in srgb, var(--entry-report-success) 72%, var(--entry-report-border));
  background: color-mix(in srgb, var(--entry-report-success) 18%, var(--entry-report-inset));
  box-shadow: inset 3px 0 0 var(--entry-report-success);
}

.entry-report .entry-report__student-row--selected.entry-report__student-row--copy-complete {
  border-color: var(--entry-report-text);
  box-shadow: inset 3px 0 0 var(--entry-report-success);
}

.entry-report .entry-report__student-select {
  display: flex;
  min-width: 0;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.entry-report .entry-report__student-copy {
  display: grid;
  min-width: 0;
  gap: 5px;
}

.entry-report .entry-report__student-copy strong {
  overflow: hidden;
  color: var(--entry-report-text);
  font-size: 14px;
  font-weight: 740;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.entry-report .entry-report__student-copy small {
  color: var(--entry-report-text-muted);
  font-family: var(--font-label, var(--font-mono, monospace));
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.entry-report .entry-report__student-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
}

.entry-report .entry-report__score-state,
.entry-report .entry-report__selection-state {
  width: fit-content;
  padding: 2px 5px;
  border: 1px solid var(--entry-report-border-strong);
  border-radius: 999px;
  line-height: 1.2;
}

.entry-report .entry-report__selection-state {
  color: var(--entry-report-text);
}

.entry-report .entry-report__student-row--selected .entry-report__selection-state {
  color: var(--entry-report-text);
}

.entry-report .entry-report__student-score {
  color: var(--entry-report-text-secondary);
  font-family: var(--font-numeric, var(--font-mono, monospace));
  font-size: 14px;
}

.entry-report .entry-report__row-copy-actions {
  display: flex;
  gap: 8px;
}

.entry-report .entry-report__row-copy-actions .entry-report__button {
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
}

.entry-report .entry-report__correction-panel {
  --entry-report-activity-accent: var(--entry-report-focus);
  display: grid;
  grid-template-rows: auto auto minmax(0, auto) minmax(104px, 1fr) 28px auto;
  gap: 10px;
  padding: 14px;
  overflow: hidden;
  box-shadow: inset 3px 0 0 color-mix(in srgb, var(--entry-report-activity-accent) 70%, transparent);
}

.entry-report .entry-report__correction-heading {
  display: grid;
  gap: 7px;
}

.entry-report .entry-report__correction-heading h2 {
  color: var(--entry-report-text);
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.015em;
}

.entry-report .entry-report__correction-heading p {
  max-width: 58ch;
  color: var(--entry-report-text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.entry-report .entry-report__activity-name {
  color: var(--entry-report-activity-accent);
}

.entry-report .entry-report__correction-labels,
.entry-report .entry-report__correction-row {
  display: grid;
  grid-template-columns: minmax(132px, 1.1fr) minmax(76px, 0.7fr) minmax(150px, 1.2fr);
  align-items: center;
  gap: 10px;
}

.entry-report .entry-report__correction-labels {
  padding-inline: 10px;
}

.entry-report .entry-report__correction-fields {
  display: grid;
  min-height: 0;
  align-content: start;
  gap: 8px;
  overflow: auto;
}

.entry-report .entry-report__correction-row {
  min-height: 58px;
  padding: 7px 9px;
  border: 1px solid var(--entry-report-border);
  border-radius: var(--entry-report-radius);
  background: var(--entry-report-inset);
}

.entry-report .entry-report__correction-row--changed {
  border-color: color-mix(in srgb, var(--entry-report-warning) 68%, var(--entry-report-border));
  background: color-mix(in srgb, var(--entry-report-warning) 5%, var(--entry-report-inset));
}

.entry-report .entry-report__correction-row > strong {
  color: var(--entry-report-text);
  font-size: 13px;
}

.entry-report .entry-report__current-field {
  color: var(--entry-report-text-secondary);
  font-size: 13px;
}

.entry-report .entry-report__correction-control {
  min-width: 0;
}

.entry-report .entry-report__correction-control select,
.entry-report .entry-report__correction-control input {
  width: 100%;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--entry-report-border-strong);
  border-radius: var(--entry-report-radius);
  background: var(--entry-report-canvas);
  color: var(--entry-report-text);
  font-size: 13px;
  font-weight: 680;
}

.entry-report .entry-report__stepper {
  display: grid;
  grid-template-columns: 36px minmax(44px, 1fr) 36px;
  align-items: center;
  min-height: 40px;
  border: 1px solid var(--entry-report-border-strong);
  border-radius: var(--entry-report-radius);
  background: var(--entry-report-canvas);
  overflow: hidden;
}

.entry-report .entry-report__button--stepper {
  width: 36px;
  min-width: 36px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.entry-report .entry-report__button--stepper .entry-report__button-icon {
  width: 15px;
  height: 15px;
}

.entry-report .entry-report__stepper output {
  color: var(--entry-report-text);
  font-family: var(--font-numeric, var(--font-mono, monospace));
  font-size: 14px;
  text-align: center;
}

.entry-report .entry-report__notes {
  display: grid;
  min-height: 104px;
  grid-template-rows: auto minmax(76px, 1fr);
  gap: 6px;
  padding: 10px;
  border: 1px solid var(--entry-report-border);
  border-radius: var(--entry-report-radius);
  background: var(--entry-report-inset);
}

.entry-report .entry-report__notes textarea {
  width: 100%;
  height: 100%;
  min-height: 74px;
  padding: 0;
  resize: none;
  border: 0;
  outline-offset: 5px;
  background: transparent;
  color: var(--entry-report-text);
  font-size: 13px;
  line-height: 1.45;
}

.entry-report .entry-report__status-region {
  display: flex;
  min-height: 28px;
  align-items: center;
  color: var(--entry-report-text-muted);
  font-family: var(--font-label, var(--font-mono, monospace));
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.entry-report .entry-report__status-region--warning {
  color: var(--entry-report-warning);
}

.entry-report .entry-report__status-region--danger {
  color: var(--entry-report-danger);
}

.entry-report .entry-report__status-region--success {
  color: var(--entry-report-success);
}

.entry-report .entry-report__correction-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(132px, 0.75fr);
  gap: 8px;
}

.entry-report .entry-report__correction-actions .entry-report__button {
  width: 100%;
}

.entry-report .entry-report__correction-actions .entry-report__button:disabled {
  border-color: var(--entry-report-border-strong);
  background: var(--entry-report-control);
  color: var(--entry-report-text-muted);
  opacity: 1;
}

.entry-report .entry-report__empty {
  display: grid;
  min-height: 120px;
  place-items: center;
  padding: 20px;
  border: 1px dashed var(--entry-report-border-strong);
  border-radius: var(--entry-report-radius);
  color: var(--entry-report-text-muted);
  font-size: 13px;
  text-align: center;
}

.entry-report .entry-report__empty--fields {
  min-height: 86px;
}

.entry-student-display {
  --entry-display-canvas: var(--rostra-canvas, #030507);
  --entry-display-surface: var(--rostra-surface, #0b0f14);
  --entry-display-control: var(--rostra-surface-control, #151b23);
  --entry-display-text: var(--rostra-text-primary, #ffffff);
  --entry-display-text-muted: var(--rostra-text-muted, #87919f);
  --entry-display-border: var(--rostra-border, #242a33);
  --entry-display-success: var(--rostra-success, #42c67a);
  --entry-display-warning: var(--rostra-warning, #f2b84b);
  --entry-display-danger: var(--rostra-danger, #ff6b5f);
  display: grid;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  grid-template-rows: 48px minmax(0, 1fr) 48px;
  gap: 24px;
  padding: 40px;
  overflow: hidden;
  background: var(--entry-display-canvas);
  color: var(--entry-display-text);
  font-family: var(--font-sans, "Avenir Next", "Segoe UI", sans-serif);
}

.entry-student-display,
.entry-student-display * {
  box-sizing: border-box;
}

.entry-student-display h1,
.entry-student-display p {
  margin: 0;
}

.entry-student-display .entry-student-display__header,
.entry-student-display .entry-student-display__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.entry-student-display .entry-student-display__identity {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--entry-display-text-muted);
  font-family: var(--font-label, var(--font-mono, monospace));
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.entry-student-display .entry-student-display__identity strong {
  color: var(--entry-display-text-muted);
  font-weight: 700;
}

.entry-student-display .entry-student-display__status {
  display: inline-flex;
  min-width: 120px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid var(--entry-display-border);
  border-radius: var(--rostra-radius-md, 6px);
  background: var(--entry-display-surface);
  color: var(--entry-display-text);
  font-family: var(--font-label, var(--font-mono, monospace));
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.entry-student-display .entry-student-display__status-icon {
  display: inline-grid;
  width: 15px;
  height: 15px;
  place-items: center;
}

.entry-student-display .entry-student-display__status-icon > svg {
  width: 100%;
  height: 100%;
}

.entry-student-display .entry-student-display__status--live {
  color: var(--entry-display-success);
}

.entry-student-display .entry-student-display__status--complete {
  border-color: color-mix(in srgb, var(--entry-display-success) 55%, var(--entry-display-border));
  color: var(--entry-display-success);
}

.entry-student-display .entry-student-display__status--frozen {
  border-color: color-mix(in srgb, var(--entry-display-warning) 55%, var(--entry-display-border));
  color: var(--entry-display-warning);
}

.entry-student-display .entry-student-display__status--danger {
  border-color: color-mix(in srgb, var(--entry-display-danger) 55%, var(--entry-display-border));
  color: var(--entry-display-danger);
}

.entry-student-display .entry-student-display__stage {
  display: grid;
  min-height: 0;
  place-items: center;
  align-content: center;
  gap: 26px;
  padding: 56px 72px;
  overflow: hidden;
  border: 1px solid var(--entry-display-border);
  border-radius: var(--rostra-radius-md, 6px);
  background: var(--entry-display-surface);
  text-align: center;
}

.entry-student-display .entry-student-display__stage-label {
  color: var(--entry-display-text-muted);
  font-family: var(--font-label, var(--font-mono, monospace));
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.entry-student-display .entry-student-display__stage h1 {
  max-width: 1100px;
  color: var(--entry-display-text);
  font-family: var(--font-display, var(--font-sans, sans-serif));
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 820;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-transform: uppercase;
  text-wrap: balance;
}

.entry-student-display .entry-student-display__speaker-cue {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  max-width: 100%;
  padding: 8px 14px;
  color: var(--entry-display-text-muted);
  border: 1px solid var(--entry-display-border);
  border-radius: var(--rostra-radius-sm, 4px);
  background: color-mix(in srgb, var(--entry-display-surface) 84%, var(--entry-display-text) 4%);
}

.entry-student-display .entry-student-display__speaker-cue span {
  font-family: var(--font-label, var(--font-mono, monospace));
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.entry-student-display .entry-student-display__speaker-cue strong {
  overflow: hidden;
  color: var(--entry-display-text);
  font-family: var(--font-sans, sans-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 760;
  letter-spacing: -0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.entry-student-display .entry-student-display__stage p {
  max-width: 920px;
  color: var(--entry-display-text-muted);
  font-size: clamp(22px, 2.3vw, 31px);
  font-weight: 450;
  line-height: 1.3;
  text-wrap: balance;
}

.entry-student-display .entry-student-display__timer {
  color: var(--entry-display-text);
  font-family: var(--font-numeric, var(--font-mono, monospace));
  font-size: clamp(58px, 6.4vw, 86px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.entry-student-display .entry-student-display__footer {
  color: var(--entry-display-text-muted);
  font-family: var(--font-label, var(--font-mono, monospace));
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.entry-student-display .entry-student-display__footer strong {
  color: var(--entry-display-text);
  font-family: var(--font-sans, sans-serif);
  font-size: 25px;
  font-weight: 760;
  letter-spacing: -0.01em;
}

.entry-student-display.entry-student-display--waiting .entry-student-display__stage h1,
.entry-student-display.entry-student-display--disconnected .entry-student-display__stage h1 {
  max-width: 850px;
  font-size: clamp(40px, 4.4vw, 58px);
  text-transform: none;
}

.entry-student-display.entry-student-display--active-speaker .entry-student-display__stage h1 {
  font-size: clamp(58px, 7vw, 92px);
}

.entry-student-display.entry-student-display--complete .entry-student-display__stage {
  border-color: color-mix(in srgb, var(--entry-display-success) 32%, var(--entry-display-border));
}

.entry-student-display.entry-student-display--complete .entry-student-display__stage h1 {
  max-width: 850px;
  font-size: clamp(48px, 5.4vw, 74px);
  text-transform: none;
}

.entry-student-display.entry-student-display--frozen .entry-student-display__stage {
  position: relative;
  border-color: color-mix(in srgb, var(--entry-display-warning) 48%, var(--entry-display-border));
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 5px,
      color-mix(in srgb, var(--entry-display-text) 5%, transparent) 6px
    ),
    var(--entry-display-surface);
}

.entry-student-display.entry-student-display--frozen .entry-student-display__stage > * {
  position: relative;
  z-index: 1;
}

.entry-student-display.entry-student-display--frozen .entry-student-display__stage h1 {
  max-width: 980px;
  font-size: clamp(48px, 5.8vw, 78px);
}

.entry-student-display .entry-student-display__signal {
  display: grid;
  width: min(420px, 62vw);
  height: 16px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 5px;
  padding: 3px;
  border: 1px solid var(--entry-display-border);
  border-radius: 999px;
  background: var(--entry-display-canvas);
}

.entry-student-display .entry-student-display__signal span {
  border-radius: 999px;
}

.entry-student-display .entry-student-display__signal span:nth-child(1) {
  background: var(--entry-display-text);
}

.entry-student-display .entry-student-display__signal span:nth-child(2) {
  background: var(--entry-display-warning);
}

.entry-student-display .entry-student-display__signal span:nth-child(3) {
  background: var(--entry-display-success);
}

.entry-student-display .entry-student-display__signal span:nth-child(4) {
  background: #55b8d8;
}

.entry-student-display .entry-student-display__signal span:nth-child(5) {
  background: #a979d9;
}

.entry-student-display .entry-student-display__signal span:nth-child(6) {
  background: var(--entry-display-danger);
}

.entry-student-display.entry-student-display--disconnected .entry-student-display__stage {
  border-color: color-mix(in srgb, var(--entry-display-danger) 45%, var(--entry-display-border));
}

@media (max-width: 1180px) {
  .entry-report .entry-report__workspace {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(240px, 0.8fr) minmax(480px, 1.4fr);
  }

  .entry-student-display {
    gap: 18px;
    padding: 28px;
  }

  .entry-student-display .entry-student-display__stage {
    gap: 20px;
    padding: 36px;
  }
}

@media (max-width: 640px) {
  .entry-report .entry-report__correction-labels {
    display: none;
  }

  .entry-report .entry-report__correction-panel {
    grid-template-rows: auto minmax(0, auto) minmax(104px, 1fr) 28px auto;
  }

  .entry-report .entry-report__correction-row {
    grid-template-columns: minmax(92px, 0.8fr) minmax(0, 1.2fr);
  }

  .entry-report .entry-report__current-field {
    display: none;
  }

  .entry-report .entry-report__correction-actions {
    grid-template-columns: 1fr;
  }

  .entry-student-display {
    min-height: 520px;
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 16px;
    padding: 20px;
  }

  .entry-student-display .entry-student-display__identity {
    gap: 10px;
    font-size: 13px;
  }

  .entry-student-display .entry-student-display__status {
    min-width: auto;
    min-height: 34px;
    font-size: 10px;
  }

  .entry-student-display .entry-student-display__stage {
    gap: 16px;
    padding: 24px 18px;
  }

  .entry-student-display .entry-student-display__stage h1 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .entry-student-display .entry-student-display__stage p {
    font-size: clamp(17px, 5vw, 23px);
  }

  .entry-student-display .entry-student-display__timer {
    font-size: clamp(48px, 16vw, 68px);
  }

  .entry-student-display .entry-student-display__footer {
    font-size: 12px;
  }

  .entry-student-display .entry-student-display__footer strong {
    font-size: 17px;
  }
}

/* Pro fixed-template report — approved Figma session-score composition. */

.entry-report--pro-session {
  width: 100%;
  height: auto;
  min-height: 100%;
  overflow: visible;
}

.entry-report--pro-session .entry-report__pro-tabs {
  display: grid;
  grid-template-columns: 156px 166px 120px;
  gap: 8px;
  width: max-content;
  height: 40px;
  margin-bottom: 14px;
}

.entry-report--pro-session .entry-report__pro-tab {
  min-width: 0;
  border: 1px solid var(--entry-report-border-strong);
  border-radius: var(--entry-report-radius);
  background: var(--entry-report-control);
  color: var(--entry-report-text-secondary);
  font-weight: 700;
}

.entry-report--pro-session .entry-report__pro-tab.is-active {
  border-color: var(--entry-report-focus);
  background: var(--entry-report-inset);
  color: var(--entry-report-text);
}

.entry-report--pro-session .entry-report__pro-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  min-height: 126px;
  margin-bottom: 14px;
}

.entry-report--pro-session .entry-report__pro-metrics article {
  display: grid;
  align-content: center;
  gap: 11px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--entry-report-border-strong);
  border-radius: var(--entry-report-radius);
  background: var(--entry-report-surface);
}

.entry-report--pro-session .entry-report__pro-metrics span,
.entry-report--pro-session .entry-report__pro-table-head,
.entry-report--pro-session .entry-report__pro-notes > span {
  color: var(--entry-report-text-muted);
  font-family: var(--font-label, var(--font-mono, monospace));
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.entry-report--pro-session .entry-report__pro-metrics strong {
  font-family: var(--font-label, var(--font-mono, monospace));
  font-size: 16px;
  line-height: 1;
}

.entry-report--pro-session .entry-report__pro-metrics p {
  color: var(--entry-report-text-secondary);
  font-size: 14px;
}

.entry-report--pro-session .entry-report__pro-table {
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid var(--entry-report-border-strong);
  border-radius: var(--entry-report-radius);
  background: var(--entry-report-surface);
}

.entry-report--pro-session .entry-report__pro-table-head,
.entry-report--pro-session .entry-report__pro-table-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) minmax(96px, 0.72fr) minmax(96px, 0.72fr) minmax(190px, 1.15fr);
  align-items: center;
}

.entry-report--pro-session .entry-report__pro-table-head {
  min-height: 40px;
  padding: 0 12px;
}

.entry-report--pro-session .entry-report__pro-table-row {
  min-height: 54px;
  padding: 0 12px;
  border-top: 1px solid var(--entry-report-border-strong);
  color: var(--entry-report-text);
  font-size: 14px;
}

.entry-report--pro-session .entry-report__pro-table-row > span,
.entry-report--pro-session .entry-report__pro-table-head > span {
  min-width: 0;
  padding-right: 12px;
}

.entry-report--pro-session .entry-report__pro-table-empty {
  min-height: 54px;
  padding: 18px 12px;
  border-top: 1px solid var(--entry-report-border-strong);
  color: var(--entry-report-text-muted);
}

.entry-report--pro-session .entry-report__pro-notes {
  display: grid;
  gap: 8px;
  padding: 0;
}

.entry-report--pro-session .entry-report__pro-notes textarea {
  width: 100%;
  min-height: 42px;
  resize: vertical;
  padding: 11px 14px;
  border: 1px solid var(--entry-report-border-strong);
  border-radius: var(--entry-report-radius);
  background: var(--entry-report-inset);
  color: var(--entry-report-text);
}

.entry-report--pro-session .entry-report__pro-correction-footer {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 160px;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  margin-top: 8px;
}

.entry-report--pro-session .entry-report__pro-correction-footer .entry-report__status-region {
  min-width: 0;
  text-align: center;
}

.entry-report--pro-session .entry-report__pro-correction-footer .entry-report__button {
  width: 100%;
}

@media (max-width: 760px) {
  .entry-report--pro-session .entry-report__pro-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .entry-report--pro-session .entry-report__pro-metrics {
    grid-template-columns: 1fr;
  }

  .entry-report--pro-session .entry-report__pro-table {
    overflow-x: auto;
  }

  .entry-report--pro-session .entry-report__pro-table-head,
  .entry-report--pro-session .entry-report__pro-table-row {
    min-width: 660px;
  }
}
