/* Style the custom header links */
.md-header__links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-left: 2rem;
}

.md-header__link {
  /* color: var(--md-primary-fg-color); */
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
  padding: 0.25em 0.5em;
  border-radius: 4px;
}

.md-header__link:hover,
.md-header__link:focus {
  color: var(--md-accent-fg-color);
  background: var(--md-accent-bg-color);
  text-decoration: underline;
}