/* Syntax Highlighting for code blocks */
.highlight {
  background-color: #1a1a1e;
  border-radius: 12px;
  padding: 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.highlight pre {
  margin: 0;
  background: none;
  padding: 0;
}

.highlight code {
  font-family: 'JetBrains Mono', 'Fira Code', Consolas, Monaco, monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Syntax colors - One Dark inspired */
.hljs-keyword,
.hljs-selector-tag,
.hljs-literal,
.hljs-section,
.hljs-link {
  color: #c678dd;
}

.hljs-string,
.hljs-title,
.hljs-name,
.hljs-type,
.hljs-attribute,
.hljs-symbol,
.hljs-bullet,
.hljs-addition,
.hljs-variable,
.hljs-template-tag,
.hljs-template-variable {
  color: #98c379;
}

.hljs-comment,
.hljs-quote,
.hljs-deletion,
.hljs-meta {
  color: #5c6370;
  font-style: italic;
}

.hljs-number,
.hljs-regexp,
.hljs-literal,
.hljs-built_in,
.hljs-builtin-name,
.hljs-params {
  color: #d19a66;
}

.hljs-class .hljs-title,
.hljs-function .hljs-title {
  color: #61afef;
}

.hljs-tag,
.hljs-selector-id,
.hljs-selector-class {
  color: #e06c75;
}

.hljs-attribute {
  color: #d19a66;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}

/* Light theme adjustments */
[data-theme="light"] .highlight {
  background-color: #f4f4f5;
}

[data-theme="light"] .hljs-keyword,
[data-theme="light"] .hljs-selector-tag,
[data-theme="light"] .hljs-literal,
[data-theme="light"] .hljs-section,
[data-theme="light"] .hljs-link {
  color: #a626a4;
}

[data-theme="light"] .hljs-string,
[data-theme="light"] .hljs-title,
[data-theme="light"] .hljs-name,
[data-theme="light"] .hljs-type,
[data-theme="light"] .hljs-attribute,
[data-theme="light"] .hljs-symbol,
[data-theme="light"] .hljs-bullet,
[data-theme="light"] .hljs-addition,
[data-theme="light"] .hljs-variable,
[data-theme="light"] .hljs-template-tag,
[data-theme="light"] .hljs-template-variable {
  color: #50a14f;
}

[data-theme="light"] .hljs-comment,
[data-theme="light"] .hljs-quote,
[data-theme="light"] .hljs-deletion,
[data-theme="light"] .hljs-meta {
  color: #a0a1a7;
}

[data-theme="light"] .hljs-number,
[data-theme="light"] .hljs-regexp,
[data-theme="light"] .hljs-literal,
[data-theme="light"] .hljs-built_in,
[data-theme="light"] .hljs-builtin-name,
[data-theme="light"] .hljs-params {
  color: #986801;
}

[data-theme="light"] .hljs-class .hljs-title,
[data-theme="light"] .hljs-function .hljs-title {
  color: #4078f2;
}

[data-theme="light"] .hljs-tag,
[data-theme="light"] .hljs-selector-id,
[data-theme="light"] .hljs-selector-class {
  color: #e45649;
}
