/* Глобальные стили подсветки синтаксиса (применяются и «перебивают» глобальные important) */
.hljs {
  color: #1f2937 !important;
  background: #f7fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 10px !important;
  padding: 14px 16px !important;
}

.hljs, .hljs code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  font-style: normal !important;
}

/* Токены нашего простого токенайзера */
.hljs .tok-keyword { color:#7c3aed !important; font-weight:600 !important; }
.hljs .tok-builtins { color:#2563eb !important; }
.hljs .tok-string { color:#059669 !important; }
.hljs .tok-number { color:#d97706 !important; }
.hljs .tok-comment { color:#9ca3af !important; font-style:italic !important; }
.hljs .tok-operator { color:#0f766e !important; }
.hljs .tok-function { color:#0ea5e9 !important; }
.hljs .tok-class { color:#dc2626 !important; }
.hljs .tok-attr { color:#2563eb !important; }
.hljs .tok-tag { color:#b45309 !important; }
.hljs .tok-punctuation { color:#6b7280 !important; }

.hljs code { background: transparent !important; }

