/* ===== CODE BLOCKS ===== */

pre {
  background-color: #2d2d2d;
  color: #f8f8f2;
  padding: 1rem;
  border-radius: 8px;
  overflow-x: auto;
  font-family: 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

code {
  font-family: 'Fira Code', 'Cascadia Code', 'Consolas', monospace;
  font-size: 0.85rem;
  background-color: rgba(128, 128, 128, 0.1);
  padding: 0.2em 0.4em;
  border-radius: 4px;
}

pre code {
  background-color: transparent;
  padding: 0;
}

/* Syntax Highlighting (basic example, typically done with a library) */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #7f8c8d;
}

.token.punctuation {
  color: #f8f8f2;
}

.token.namespace {
  opacity: 0.7;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
  color: #fc5a7c;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #a8ff60;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #67b8ff;
}

.token.atrule,
.token.keyword,
.token.attr-value,
.token.class-name {
  color: #ff8c42;
}

.token.function,
.token.regex,
.token.important,
.token.variable {
  color: #ffd700;
}

.token.important,
.token.bold {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}
