/* Arcade floor result page — tables, panes and callouts.
   Uses the peel-site tokens (--bg --panel --line --muted --dim --teal --blue)
   so this page stays visually part of the research library. */

.restab {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0 .8rem;
  font-size: .95rem;
}
.restab caption {
  caption-side: top;
  text-align: left;
  color: var(--muted);
  font-size: .82rem;
  padding-bottom: .6rem;
}
.restab th,
.restab td {
  text-align: left;
  padding: .7rem .8rem;
  border-bottom: 1px solid var(--line);
  vertical-align: baseline;
}
.restab thead th {
  color: var(--muted);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom-color: var(--muted);
}
.restab td small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  margin-top: .15rem;
}
.restab td.win  { color: var(--teal); }
.restab td.lose { color: #e0857a; }
.restab tbody tr:last-child td { border-bottom: none; }

.two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 1.2rem 0;
}
.pane {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}
.pane h3 {
  margin: 0 0 .5rem;
  font-size: 1rem;
  color: var(--teal);
}
.pane p { margin: 0; }

.callout {
  border-left: 3px solid var(--teal);
  background: var(--panel);
  border-radius: 0 10px 10px 0;
  padding: .9rem 1.1rem;
  margin: 1.1rem 0;
}

.claims { margin: 1rem 0 0; padding-left: 1.1rem; }
.claims li { margin-bottom: .6rem; }

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .9em;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: .08em .38em;
}

@media (max-width: 560px) {
  .restab { font-size: .86rem; }
  .restab th, .restab td { padding: .55rem .5rem; }
}

/* Code/answer blocks on the floor page */
pre.answer {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .9rem 1.1rem;
  overflow-x: auto;
  line-height: 1.55;
  font-size: .88rem;
  white-space: pre;
}
pre.answer.mono { border-left: 3px solid var(--teal); }
