/* ═══════════════════════════════════════════════════════════════════
   Tenant Branding — CSS Custom Properties
   Loaded from /api/config at startup. Overridable per white-label tenant.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Brand colors — set dynamically by TenantConfig.applyBranding() */
  --brand-primary: #14b8a6;
  --brand-secondary: #d4a948;
  --brand-accent: #0D4F4F;
}

/* Sidebar uses brand accent as background */
.sidebar {
  background: var(--brand-accent, #0D4F4F);
}

/* Active sidebar link uses brand primary */
.sidebar a.active {
  border-left-color: var(--brand-primary, #14b8a6);
}

/* Sidebar brand text uses brand secondary (gold) */
.sidebar-brand h2,
.sidebar-brand small {
  color: var(--brand-secondary, #d4a948);
}
