/* DEFAULT (light theme): inline code */
code:not(pre code) {
  background-color: #e8f0fe !important;
  color: #2563eb !important;
  border: 1px solid #cfe0ff !important;
  border-radius: 8px !important;
  padding: 0.08rem 0.45rem !important;
  font-weight: 600;
}

/* DARK THEME OVERRIDE: inline code (higher specificity) */
html.quarto-dark code:not(pre code),
body.quarto-dark code:not(pre code),
html[data-bs-theme="dark"] code:not(pre code),
body[data-bs-theme="dark"] code:not(pre code),
html[data-theme="dark"] code:not(pre code),
.quarto-dark code:not(pre code) {
  background-color: #2b2f33 !important;
  color: #7db7ff !important;
  border: 1px solid #3a4557 !important;
}

/* Ensure fenced blocks stay unchanged */
pre code {
  background: transparent !important;
  color: inherit !important;
  border: 0 !important;
  padding: 0 !important;
}


