/* ═══════════════════════════════════════════════════════════════════════
   08/skin-light.css — DARMASTER (master) Document Library · master-only deltas
   Daralbeida Multi-Entity Platform · 2026-06-05 · deep-unified 2026-06-15

   HISTORY: this file used to repaint the master library as a LIGHT sand theme
   (sand ground + ink text + light cards). That made the master library the only
   library NOT following the platform's single deep entity ground — it showed a
   cream/yellow background while every entity library (and the rest of the
   DARMASTER site) is deep. As of 2026-06-15 the master library follows the SAME
   logic as every other page: it inherits the deep ground + light document
   OBJECTS + dark chrome straight from the shared 08/skin.css, exactly like the
   DARH/DARM/DARX libraries. The page ground is the single-source --page-bg
   (tokens.css) via 08/skin.css's --doc-bg.

   The previous light-sand theme is preserved at
   __darmaster/api/_backups/skin-light_20260615_pre_deep_unify.css (restore that
   file here to bring the sand theme back).

   What REMAINS here is the only genuinely master-specific bit: the master
   library carries an extra skin-bar (per-entity "Edit skin" links + "Edit master
   skin"), which has more items than an entity library's bar. Without the rule
   below it wraps to a 2nd line at narrow widths and pushes the body down. This
   is layout only — no colours that fight the deep theme.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── SKIN-MANAGER BAR (master only) — keep it to ONE row at ANY width, on the
      dark nav/toolbar background so the whole chrome zone is one colour. The
      `lib-light` body class is now just this hook (the library itself is deep). */
body.lib-light .lib-skinbar{
  background: var(--nav-bg) !important;
  border-bottom: 1px solid color-mix(in srgb, var(--nav-gold) 20%, transparent) !important;
  /* clip rather than scroll → the bar's height never grows past one line. */
  flex-wrap: nowrap !important;
  overflow: hidden !important;
}
body.lib-light .lib-skinbar > *{ white-space: nowrap !important; flex-shrink: 0 !important; }
