/* Prism.js — "ink" theme for Mise en Prod.
   Dark navy code block embedded in the notebook paper; token palette
   tuned to the blue-ink/red-pen system. */

code[class*="language-"],
pre[class*="language-"] {
    color: #cfe3f0;
    background: none;
    font-family: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8rem;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    line-height: 1.7;
    tab-size: 4;
    hyphens: none;
}

pre[class*="language-"] {
    padding: 16px 18px;
    overflow: auto;
    border-radius: 5px;
    background: #08202f;
}

/* Inline language-tagged code (rare); plain inline <code> is styled in style.css */
:not(pre) > code[class*="language-"] {
    padding: 0.15em 0.35em;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.8);
    color: #0a5c93;
}

.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #6b869a;
    font-style: italic;
}

.token.punctuation { color: #8aa0b4; }

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
    color: #a5c8e6;
}

.token.boolean,
.token.number {
    color: #e6c27f;
}

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

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

.token.atrule,
.token.attr-value,
.token.keyword {
    color: #6fb2e6;
    font-weight: 600;
}

.token.function {
    color: #e6c27f;
}

.token.class-name {
    color: #a5c8e6;
}

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

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