/* ─── LLM call log ─────────────────────────────────────────────────────
   Stat tiles for running totals + a dense mono table for the call log.
   HUD voice: mono uppercase headers, dashed row dividers, cyan for cost. */

.llm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.llm-stats .val { font-size: 1.3rem; }

@media (max-width: 640px) {
  .llm-stats { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .llm-stats .val { font-size: 1rem; }
}

.llm-table-wrap { overflow-x: auto; }

.llm-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 0.74rem;
}
.llm-table th {
  text-align: left;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 500;
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.llm-table td {
  padding: 0.5rem 0.6rem;
  border-bottom: 1px dashed var(--border-soft);
  color: var(--ink-2);
  white-space: nowrap;
}
.llm-table .num { text-align: right; font-variant-numeric: tabular-nums; }
.llm-table .muted { color: var(--muted-2); }
.llm-table .prompt {
  max-width: 22ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--text);
}
.llm-table tbody tr:hover { background: var(--surface-2); }
.llm-table td.num:last-child { color: var(--accent); }
