/* Puffi Admin custom styles */

[data-layout=horizontal] .page-content {
    padding: calc(45px + 1.5rem) calc(1.5rem * .5) 0 calc(1.5rem * .5);
}

.alert {
    border-left-width: 3px !important;
}

/* JSON pretty-print с нумерацией строк (гутенберг) */
pre.json-pretty {
    counter-reset: line;
    padding-left: 0 !important;
    line-height: 1.45;
    color: #e8eaed;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}
pre.json-pretty .line {
    counter-increment: line;
    display: block;
    padding-left: 3.4em;
    position: relative;
    min-height: 1.45em;
}
pre.json-pretty .line::before {
    content: counter(line);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.6em;
    padding-right: 0.5em;
    text-align: right;
    color: #c8d0dd;
    opacity: 0.85;
    border-right: 1px solid rgba(255,255,255,0.25);
    user-select: none;
    font-variant-numeric: tabular-nums;
    font-size: 0.92em;
    font-weight: 500;
}
/* Светлая тема (bg-light) — другой цвет номера и текста */
pre.bg-light.json-pretty {
    color: #1f2430;
}
pre.bg-light.json-pretty .line::before {
    color: #94a3b8;
    border-right-color: rgba(0,0,0,0.10);
}
