﻿
/* ====== Контейнер коду ====== */

pre {
    font-family: Arial, sans-serif;
    margin: 40px auto;
    max-width: 900px;
    background: #1e1e2e;
    color: #cdd6f4;
    border-radius: 8px;
    padding: 16px 20px;
    overflow-x: auto;
    font-size: 14px;
    line-height: 1.55;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

    pre code {
        font-family: 'Fira Code', 'Consolas', 'Cascadia Code', monospace;
        white-space: pre;
    }

/* ====== Кольори токенів ====== */

.tok-comment {
    color: #6c7086;
    font-style: italic;
}

.tok-string {
    color: #a6e3a1;
}

.tok-number {
    color: #fab387;
}

.tok-keyword {
    color: #cba6f7;
    font-weight: 600;
}

.tok-type {
    color: #89b4fa;
}

.tok-function {
    color: #f9e2af;
}

.tok-preprocessor {
    color: #f38ba8;
}

.tok-decorator {
    color: #f38ba8;
}

.tok-plain {
    color: inherit;
}

/* ====== Необов'язково: рамка/підпис мови у верхньому правому куті ====== */

.code-block {
    position: relative;
}

    .code-block::before {
        content: attr(data-lang);
        position: absolute;
        top: 6px;
        right: 12px;
        font-size: 11px;
        color: #6c7086;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        user-select: none;
    }
