/* ============================================================
   Tawi ERP Design System — Entry Point + SOURCE MAP
   ============================================================
   Load this single stylesheet on every Tawi ERP interface:

     <link rel="stylesheet" href="/styles/index.css">

   WHERE EVERY PRIMITIVE IS DEFINED (single source of truth):

     design-tokens.css    → tokens ONLY (colour / spacing / type /
                             radius / shadow / layout / logo). NEVER
                             defines components.
     layout.css           → app shell, sidebar, header, page container,
                             section, kpi grid, responsive breakpoints.
     components.css       → btn, badge, status-pill, card, stat-card,
                             data-table, modal, toast, global-search,
                             space-y, text-* helpers.
     forms.css            → form-group, form-label, form-input/select/
                             textarea, form-check, form-row, form-actions.
     erp-components.css   → eod-review-card, stock-alert-card,
                             procurement-variance-card, exception-card,
                             activity-item, quick-stat.
     dark-mode.css        → dark-mode remap layer (safety net only).
     hq-shell.css         → shell GLUE only (topbar, #sidebarNav,
                             branch-card) — loaded separately after this.

   RULES (Fix 274):
     • design-tokens.css never defines components.
     • No class may be defined in more than one file (one definition).
     • Tailwind is used for layout/spacing utilities only — never colour.
     • Colour comes from tokens or components; pages ship no raw hex.

   DO NOT load common-ui.css / ui-baseline.css / style.css on top of this
   file — they are thin aggregators and would defeat single-source-of-truth.
   ============================================================ */

@import "./design-tokens.css";
@import "./layout.css";
@import "./components.css";
@import "./forms.css";
@import "./erp-components.css";
@import "./dark-mode.css";