/* Lager (Stammdaten-Editor) — Spaltenbreiten. Generische Listen-Patterns
   aus _shared/functions/list-view/grid-css/idf-list-grid.css. */
.lg-grid {
  /* Name · Standort · Typ · Regal-Nr · Löschen */
  display: grid;
  /* Breiten aus der CSS-Variable (col-resize-Baustein); Fallback = Defaults. */
  grid-template-columns: var(--lg-cols, minmax(220px, 1fr) 200px 160px 140px 44px);
  align-items: stretch;
  gap: 0;
}
.lg-rows .lg-row .lg-grid > .idf-list-cell-action { justify-content: center; padding: 0; }

@media (max-width: 1000px) {
  .lg-main { overflow-x: auto; }
  .lg-thead, .lg-rows, .lg-stats { min-width: 820px; }
}
