/*
 * Copyright © 2025–2026 Dankest, LLC
 * SPDX-License-Identifier: AGPL-3.0-or-later
 * Catalog-specific tweaks layered on top of /bootstraps-app/bootstraps.css
 * (which provides the :root vars, filter bar, dropdowns, and table styling).
 */

/* The catalog has more columns than the bootstraps table - give it room and let
   it scroll horizontally on narrow viewports instead of squashing. */
.bs { max-width: 1180px; }
.table-scroll { overflow-x: auto; }

/* Monospace database name + emoji type marker. */
.bs td.dbname { font-family: var(--bs-mono); font-size: 12px; color: var(--bs-ink); }
.bs td .cell-emoji { margin-right: 7px; font-size: 14px; line-height: 1; }

/* "Updated <time>" stamp inline in the intro line. */
.updated { color: var(--bs-muted); font-size: .85em; margin-left: .35rem; white-space: nowrap; }

/* Per-row "Copy URL" sync hint button. */
.bs td.actions .copyhint { padding: 4px 10px; font-size: 11px; }
.bs td.actions .copyhint.copied { color: #fff; background: var(--bs-accent); border-color: var(--bs-accent); }
