/* Light mode (default) */
body[data-md-color-scheme="default"] .md-tabs__link--active,
body[data-md-color-scheme="default"] .md-tabs__item--active {
  color: #353840 !important;
  font-weight: bold !important;
  background: #ededed !important;
  border-radius: 4px;
}

body[data-md-color-scheme="default"] .md-nav__link--active {
  color: #353840 !important;
  font-weight: bold !important;
  background: #ededed !important;
  border-radius: 4px;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
  margin-left: 4px;
  margin-right: -8px;
}

/* Dark mode (slate) */
body[data-md-color-scheme="slate"] .md-tabs__link--active,
body[data-md-color-scheme="slate"] .md-tabs__item--active {
  color: #353840 !important;
  font-weight: bold !important;
  background: #d2d2d2 !important;
  border-radius: 4px;
}

body[data-md-color-scheme="slate"] .md-nav__link--active {
  color: #ededed !important;
  font-weight: bold !important;
  background: #353840 !important;
  border-radius: 4px;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  padding-left: 8px !important;
  padding-right: 8px !important;
  margin-left: 4px;
  margin-right: -8px;
}


/* 
.md-tabs__link--active,
.md-tabs__item--active {
  color: #000000 !important;
  font-weight: bold !important;
  background: #e3f2fd !important;
  border-radius: 4px;
} */


/*
.md-nav__link--active {
  font-weight: bold !important;
  background: #30373b !important;
  border-radius: 4px;
} */

/* Light mode: code blocks and inline code */
body[data-md-color-scheme="default"] pre,
body[data-md-color-scheme="default"] code {
  background: #ededed !important; /* Light, high-contrast background */
  /* color: #222 !important;         /* Darker text for readability */
}

/* Light mode: code fences only (for extra control) */
body[data-md-color-scheme="default"] pre {
  font-size: 0.85em;
  border-radius: 6px;
  padding: 1em;
}

/* Light mode: inline code only */
body[data-md-color-scheme="default"] code {
  font-size: 0.85em;
  border-radius: 4px;
  padding: 0.2em 0.4em;
}

/* Dark mode: code blocks and inline code */
body[data-md-color-scheme="slate"] pre,
body[data-md-color-scheme="slate"] code {
  background: #353840 !important; /* Dark, high-contrast background */
  /* color: #f8f8f2 !important;      /* Light text for readability */
}

/* Dark mode: code fences only */
body[data-md-color-scheme="slate"] pre {
  font-size: 0.85em;
  border-radius: 6px;
  padding: 1em;
}

/* Dark mode: inline code only */
body[data-md-color-scheme="slate"] code {
  font-size: 0.85em;
  border-radius: 4px;
  padding: 0.2em 0.4em;
}

/* Creative Commons footer styling */
.md-footer-copyright {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
}

.md-footer-copyright a {
  text-decoration: none;
  color: inherit;
}

.md-footer-copyright img {
  vertical-align: middle;
  filter: brightness(0) saturate(100%);
}

/* Dark mode adjustments for CC icons */
body[data-md-color-scheme="slate"] .md-footer-copyright img {
  filter: brightness(0) saturate(100%) invert(1);
}
