/* ── Results Screen ── */
.result-badge {
  font-size: 2.8rem; font-weight:900; text-align:center; padding:12px 0; line-height:1.2;
}
.result-pass { color:var(--green); text-shadow:0 0 24px rgba(63,185,80,0.25); }
.result-fail { color:var(--red);   text-shadow:0 0 24px rgba(248,81,73,0.25); }

.result-score {
  font-size:3.5rem; font-weight:900; text-align:center;
  font-family:var(--mono); line-height:1;
}
.result-threshold {
  text-align:center; color:var(--text-dim); font-size:0.9rem; margin-bottom:20px;
}

/* Results table */
.results-table-wrapper {
  max-height:260px; overflow-y:auto; border:1px solid var(--border);
  border-radius:var(--radius); width:100%;
}
.results-table { width:100%; border-collapse:collapse; font-size:13px; }
.results-table th {
  position:sticky; top:0; background:var(--bg-card); color:var(--text-dim);
  font-weight:600; padding:8px 12px; text-align:left; border-bottom:1px solid var(--border);
}
.results-table td {
  padding:6px 12px; border-bottom:1px solid var(--border);
}
.row-correct { background:rgba(63,185,80,0.04); }
.row-fail    { background:rgba(248,81,73,0.04); }
