/* Prism.js - Minimal dark theme for code blocks */
/* We'll load Prism from CDN in functions.php or keep this as placeholder */
/* The actual highlighting is handled by prism.js */

code[class*="language-"],
pre[class*="language-"] {
    color: #e2e8f0;
    text-shadow: none;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.6;
    tab-size: 2;
    hyphens: none;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata { color: #64748b; }

.token.punctuation { color: #94a3b8; }

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

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

.token.operator,
.token.entity,
.token.url { color: #fbbf24; }

.token.atrule,
.token.attr-value,
.token.keyword { color: #818cf8; }

.token.function,
.token.class-name { color: #34d399; }

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