.hash-board {
  display: grid;
  grid-template-columns: 1fr;     /* always single column — buckets are wide */
  gap: 14px;
  margin-top: 18px;
}

.hash-panel {
  background: var(--bg);
  border: 1px solid var(--grid);
  border-radius: 8px;
  padding: 10px 12px 12px 12px;
  display: flex;
  flex-direction: column;
}
.hash-panel.dim {
  opacity: 0.35;
  filter: saturate(0.4);
}

.hash-panel .head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 4px;
}
.hash-panel .name {
  font-weight: 700; color: var(--title); font-size: 14px;
}
.hash-panel .complexity {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px; color: var(--muted);
}
.hash-panel .stats {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px; color: var(--text);
  margin-top: 1px;
  display: flex; flex-wrap: wrap; gap: 6px 14px;
}
.hash-panel .stats .label  { color: var(--muted); margin-right: 4px; }
.hash-panel .stats .ok     { color: var(--title); font-weight: 600; }
.hash-panel .stats .warn   { color: #C28A00; font-weight: 700; }
.hash-panel .stats .fail   { color: var(--accent); font-weight: 700; }

.hash-panel canvas {
  width: 100%;
  height: 180px;
  display: block;
  background: var(--bg-soft);
  border-radius: 4px;
  margin-top: 6px;
}
.hash-panel.tall canvas { height: 260px; }   /* cuckoo (two tables) */

.lf-readout {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  color: var(--muted);
  min-width: 60px;
}
