/* ===========================================================================
   theme.css — per-client palette and shared design tokens
   ===========================================================================
   Default palette is the Baghirathi blue (used for unauthenticated pages,
   super_admin pages, and as the fallback). Per-client overrides below switch
   the palette by setting `data-client="<code>"` on the <html> tag.
   --------------------------------------------------------------------------- */

:root {
  --primary: #185FA5;
  --primary-dark: #042C53;
  --primary-light: #B5D4F4;
  --primary-bg: #E6F1FB;
  --primary-bg-soft: #F8FBFF;
  --client-name: "KGFtech";
}

[data-client="DEFAULT"] {
  --primary: #185FA5;
  --primary-dark: #042C53;
  --primary-light: #B5D4F4;
  --primary-bg: #E6F1FB;
  --primary-bg-soft: #F8FBFF;
}

[data-client="BGT"] {
  --primary: #185FA5;
  --primary-dark: #042C53;
  --primary-light: #B5D4F4;
  --primary-bg: #E6F1FB;
  --primary-bg-soft: #F8FBFF;
}

[data-client="HIT"] {
  --primary: #1E7E34;
  --primary-dark: #155724;
  --primary-light: #C3E6CB;
  --primary-bg: #E8F5E9;
  --primary-bg-soft: #F4FBF6;
}

/* Reusable "Powered by KGFtech" lockup: logo + uppercase wordmark. */
.poweredby {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #6B7280;
  font-weight: 500;
}
.poweredby img {
  height: 20px;
  width: auto;
  opacity: 0.85;
}
