/* Change the hyperlink color */
a {
  color: #5555aa; /* You can use any hex color code */ #333333
    text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: #000080;
  text-decoration: underline;
}

/* Target TOC active links with higher specificity */
#TOC .nav-link.active, 
#TOC .toc-entry a.active, 
.nav-link.active {
  color: #FF5733 !important; /* Custom color for active link */
  font-weight: bold;         /* Make it bold for emphasis */
  /* text-decoration: underline; /* Optional: Add underline */
}
