/*
  MSDS Bharat Theme Kit
  Change brand colors for the whole website from this file only.
  Keep variable names unchanged. Edit values after the colon.
*/
:root{
  /* Page backgrounds */
  --paper:#FAFAF6;
  --paper-dim:#F1F0E9;
  --white:#FFFFFF;

  /* Text */
  --ink:#1B1B18;
  --ink-soft:#5B594F;

  /* Primary brand */
  --teal:#0F5C5C;
  --teal-dark:#0A4040;
  --teal-tint:#E4EFEC;

  /* Accent */
  --amber:#F2B705;
  --amber-dark:#C98F02;

  /* Highlight/progress/accent animation */
  --progress:#7ED957;

  /* Certificate/seal accent */
  --seal:#C1382D;

  /* Lines, shadows, sizing */
  --line:rgba(27,27,24,0.12);
  --shadow:0 8px 24px rgba(27,27,24,0.08);
  --radius:14px;
  --max:1120px;
}

/* Optional dark-tech preset.
   To use later, copy these values into :root above or add data-theme="dark" to <html>. */
html[data-theme="dark"]{
  --paper:#0D0E10;
  --paper-dim:#17181B;
  --white:#17181B;
  --ink:#F3F2EE;
  --ink-soft:#B4B0A5;
  --teal:#F4C430;
  --teal-dark:#D9A90F;
  --teal-tint:#272313;
  --amber:#F4C430;
  --amber-dark:#D9A90F;
  --progress:#7ED957;
  --seal:#F4C430;
  --line:rgba(243,242,238,0.14);
  --shadow:0 14px 40px rgba(0,0,0,0.28);
}


/* Final fix: TOC links normal weight, no underline */
.inline-toc a, .prose .inline-toc a, .article-content .inline-toc a, .article-copy .inline-toc a{
  font-weight:400 !important;
  text-decoration:none !important;
}
.inline-toc li{font-weight:400 !important;}
