/* Base styles for code blocks */
pre.highlight {
  background-color: var(--dark0_hard);
  border-radius: 4px;
  padding: 1em;
  overflow-x: auto;
  margin: 1.5em 0;
  border: 1px solid #3c3836;
  line-height: 1.2;
  width: 85vw;
  max-width: 1440px;
}

code {
  font-family: "Berkeley Mono", monospace;
  font-size: var(--f6);
}

/* Syntax highlighting colors - Gruvbox theme */
.identifier {
  color: #83a598;
}

.lisp_whitespace.whitespace {
  /* Keep whitespace visible but subtle */
  color: transparent;
}

.default, code span {
  color: var(--light0_hard);
}

.highlight .operator {
  color: var(--bright_orange);
}

.highlight .keyword {
  color: var(--bright_red);
}

.highlight .string {
  color: var(--bright_green);
}

.highlight .identifier {
  color: var(--bright_aqua);
}

/* Optional: Add a subtle line number effect */
pre.highlight {
  counter-reset: line;
}
