/*
 * dns-lookup.css — per-tool styles for the DNS Lookup result summary.
 * Tokens only; no inline styles (CSP). The record table reuses the shared .table.
 */

/* Summary badges (host / type / count) wrap neatly beside the action buttons. */
.dns-summary-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  margin: 0;
  min-width: 0;
}

/* Keep the Value column readable: monospace values wrap instead of overflowing. */
#dns-rows td.font-mono {
  font-size: 13px;
  line-height: 1.5;
}

/* TTL column stays compact and right-aligned for quick scanning. */
#dns-rows td.tabular {
  white-space: nowrap;
  color: var(--text-muted);
}
