.theme-light {
  --text-accent: #007aff; /* Light mode link color */
}

.theme-dark {
  --text-accent: #4da3ff; /* Dark mode link color */
}

/* Font stack: prefer Avenir if installed, fallback to Inter and system UI */
body {
  font-family: "Avenir Next", Avenir, Inter, system-ui, sans-serif;
}

/* Override text selection and highlights to use the accent color */
::selection {
  background: var(--text-accent) !important;
  color: white !important;
}

.search-highlight,
.highlight,
.obsidian-search-match-highlight {
  background-color: var(--text-accent) !important;
  color: white !important;
}

/* Suppress preview anchor flash and force accent background */
.markdown-preview-view mark:target {
  background-color: var(--text-accent) !important;
  color: white !important;
  animation: none !important;
}

.markdown-preview-view h2 {
  border-bottom: none !important;
}