/* =============================================================================
   SalesBoard — shared design tokens (SALESBOARD_BLUEPRINT.md §4.6)
   The palette + type identity, shared by the rep app (and later the admin app).
   A dealership's custom theme overrides the six palette vars at runtime via JS
   (setProperty on :root), exactly as the board does.
   The board keeps its own in-file copy (board/board.css) for now; this file is
   the shared home going forward.
   ============================================================================= */
:root {
  /* Palette (§4.6) — shipping defaults / fallback. */
  --bg:          #07080d;
  --card:        #14161e;
  --card-border: #232634;
  --grid-line:   #2a2f3d;
  --text:        #ffffff;
  --text-dim:    #a4adbf;

  /* Default category colors (§4.6) — pilot store, for reference / fallback.
     Real per-dealership colors come from the categories table. */
  --new-bmw:  #0e3fe6;
  --new-mini: #f73636;
  --used:     #04bf33;
  --acq:      #ff931f;

  --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-stack);
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[hidden] { display: none !important; }

/* -----------------------------------------------------------------------------
   BoardIt wordmark (brand core, D25): "Board" + boxed "It" (inverted white
   pill), set in Arial. Deliberately black & white — independent of any store's
   category-color theme. Uses em units so it scales with the heading it sits in.
   --------------------------------------------------------------------------- */
.wm {
  font-family: Arial, Helvetica, sans-serif;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.wm-it {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: #ffffff;
  color: #07080d;
  border-radius: 0.16em;
  padding: 0.1em 0.18em 0.15em;
  margin-left: 0.05em;
}
