/* Prism.js theme - minimal and clean */
code[class*="language-"],
pre[class*="language-"] {
    color: var(--text-color);
    background: none;
    text-shadow: none;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
    font-size: 0.9em;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.5;
    tab-size: 4;
    hyphens: none;
}

pre[class*="language-"] {
    padding: 1rem;
    margin: 1.5rem 0;
    overflow: auto;
    background-color: var(--code-bg);
    border: 1px solid var(--code-border);
    border-radius: 4px;
}

:not(pre) > code[class*="language-"] {
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    background-color: var(--code-bg);
    border: 1px solid var(--code-border);
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: var(--text-muted);
    font-style: italic;
}

.token.punctuation {
    color: var(--text-secondary);
}

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

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

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
    color: var(--text-secondary);
}

.token.atrule,
.token.attr-value,
.token.keyword {
    color: var(--accent-color);
}

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

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

