/* history.css — snapshot viewer */

.history-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.history-table th,
.history-table td {
  padding: 8px;
  border-bottom: 1px solid var(--card-border);
}

.history-table th {
  background: var(--table-header-bg);
  color: var(--text-primary);
}

.snapshot-viewer {
  margin-top: 12px;
  padding: 10px;
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--card-border);
  white-space: pre-wrap;
  font-family: monospace;
  font-size: 0.85rem;
  color: var(--text-primary);
}
