/* Prism.js theme personnalisé pour Lua - Thème OnlyBot */

/* Fond et base */
code[class*="language-"],
pre[class*="language-"] {
    color: #e4e7eb;
    background: none;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.6;
    tab-size: 4;
    hyphens: none;
}

pre[class*="language-"] {
    padding: 0;
    margin: 0;
    overflow: auto;
    background: transparent;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
    background: transparent;
}

/* Tokens */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #64748b;
    font-style: italic;
}

.token.punctuation {
    color: #9ca3af;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
    color: #f59e0b;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
    color: #10b981;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
    color: #e43f6b;
}

.token.atrule,
.token.attr-value,
.token.keyword {
    color: #e43f6b;
    font-weight: 500;
}

.token.function,
.token.class-name {
    color: #3b82f6;
}

.token.regex,
.token.important,
.token.variable {
    color: #f59e0b;
}

.token.important,
.token.bold {
    font-weight: bold;
}

.token.italic {
    font-style: italic;
}

.token.entity {
    cursor: help;
}

/* Styles spécifiques pour les blocs de code */
.code-block code[class*="language-"],
.code-block pre[class*="language-"] {
    color: #e4e7eb;
    background: transparent;
}

.code-block .token.comment {
    color: #64748b;
    font-style: italic;
}

.code-block .token.keyword {
    color: #e43f6b;
    font-weight: 500;
}

.code-block .token.string {
    color: #10b981;
}

.code-block .token.number {
    color: #f59e0b;
}

.code-block .token.function {
    color: #3b82f6;
}

.code-block .token.operator {
    color: #e43f6b;
}

.code-block .token.punctuation {
    color: #9ca3af;
}

