/* Override PaperMod’s default accent (light + dark) › see theme-vars.css :contentReference[oaicite:4]{index=4} */

:root {
  /* Primary accent (light mode) → a deep navy instead of default cyan */
  --primary: #1B3A57;
  --primary-foreground: #F8FAFC;  /* make sure text on buttons remains light */
  /* If you want link underlines to inherit the same accent: */
  --link-color: var(--primary);
  --link-hover-color: #324A75;    /* slightly lighter hover */
  --link-underline-shadow: 0 1px 0 var(--link-color);
  --link-hover-underline-color: var(--link-hover-color);
  --link-hover-underline-shadow: 0 2px 0 var(--link-hover-underline-color);
  --accent-category: #1B3A57;
  
}

.dark {
  /* If the dark mode uses a different primary (optional)—comment out if not needed */
  --primary: #324A75;
  --primary-foreground: #F8FAFC;
  --link-color: var(--primary);
  --link-hover-color: #1B3A57;
  --link-underline-shadow: 0 1px 0 var(--link-color);
  --link-hover-underline-color: var(--link-hover-color);
  --link-hover-underline-shadow: 0 2px 0 var(--link-hover-underline-color);
}

/* (Optional) If you want to tweak the “category pill” color or tag colors,
override these too—for example:

--accent-category: #1B3A57;
/* You can add more overrides here—e.g., card shadows, border‐radius, etc. */
