/* The Lab — view layout only. Tables reuse the shared .data-table class
   (style.css), which is already themed for light + dark. All colors use the
   real Odin theme tokens (--text-primary, --bg-card, --border, --red, ...). */

#lab-mount {
  max-width: 1080px;
  margin: 0 auto;
}

.lab-meta {
  color: var(--text-muted);
  font-size: 12px;
  margin: 0 0 1rem;
}

/* Stacked, clearly separated titled sections */
.lab-section {
  margin: 0 0 2rem;
}
.lab-section > h3 {
  margin: 0 0 0.6rem;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  border-left: 3px solid var(--red);
  padding-left: 0.55rem;
  line-height: 1.25;
}

/* Right-align numeric columns, scoped to Lab tables (don't touch global .data-table) */
#lab-mount .data-table th.num,
#lab-mount .data-table td.num {
  text-align: right;
}
#lab-mount .data-table td.lab-tech {
  font-weight: 600;
}

/* Momentum 2x2 cards */
.lab-quadrants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 2rem;
}
.lab-quad {
  flex: 1 1 150px;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.lab-quad .n {
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-primary);
}
.lab-quad .lbl {
  margin-top: 0.25rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.lab-quad.crashing {
  border-color: var(--red);
}
.lab-quad.crashing .n {
  color: var(--red);
}

.lab-spark {
  font-family: ui-monospace, Menlo, Consolas, monospace;
  letter-spacing: 1px;
  color: var(--text-secondary);
}
