/* --- Apply your custom primary header gradients --- */

/* Dark mode (slate) header gradient */
[data-md-color-scheme="slate"] .md-header {
  background-image: linear-gradient(135deg, #6182db, #bab4ff);
  background-color: transparent;
}

/* Light mode (default) header gradient */
[data-md-color-scheme="default"] .md-header {
  background-color: orange;
}


/* --- Target article links in dark mode --- */

/* Force links in the main content body to be white and underlined */
[data-md-color-scheme="slate"] .md-content a {
  color: #ffffff !important;
  text-decoration: underline !important;
}

/* Ensure the text and underline stay white when hovered */
[data-md-color-scheme="slate"] .md-content a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
  opacity: 0.8; /* Subtle visual feedback on hover */
}
