/* gast-list.css — Dashboard GastList (Legacy, bleibt verfuegbar)

   Quelle: extrahiert aus dashboard.css ("GastList"-Block aus dem Legacy-
   Sammelblock). Inhalt 1:1.

   Konsumenten: web/js/domain/dashboard/gast-list.js — kompakte Liste mit
   Name + Wert. Vom neueren GastGrid (gast-grid.css) abgeloest, bleibt aber
   als Legacy-Modul verfuegbar.
   ========================================================================== */

.dash-gast-list .gl-rows { display: flex; flex-direction: column; gap: var(--space-1, 4px); }
.dash-gast-list .gl-row { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: var(--space-2, 8px); padding: var(--space-2, 8px); border-radius: var(--radius-sm); background: transparent; border: none; text-align: left; width: 100%; font-family: inherit; color: inherit; }
.dash-gast-list .gl-row.is-clickable { cursor: pointer; }
.dash-gast-list .gl-row.is-clickable:hover { background: var(--color-bg-muted); }
.gl-row-name { font-size: var(--fs-caption, 13px); color: var(--color-text-primary); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gl-row-value { font-size: var(--fs-caption, 13px); color: var(--color-text-muted); font-variant-numeric: tabular-nums; }
