/**
 * Prism.js Theme - One Dark Pro
 * Inspired by Atom's One Dark theme
 * Professional syntax highlighting for help.pricefy.io
 */

code[class*="language-"],
pre[class*="language-"] {
    color: #abb2bf;
    background: none;
    font-family: 'Fira Code', 'JetBrains Mono', 'SF Mono', 'Cascadia Code', Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 14px;
    text-align: left;
    white-space: pre;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
    line-height: 1.6;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}

/* Code blocks */
pre[class*="language-"] {
    padding: 1.25em 1.5em;
    margin: 0;
    overflow: auto;
    border-radius: 0 0 8px 8px;
}

:not(pre) > code[class*="language-"],
pre[class*="language-"] {
    background: #282c34;
}

/* Inline code */
:not(pre) > code[class*="language-"] {
    padding: 0.2em 0.4em;
    border-radius: 4px;
    white-space: normal;
}

/* Token colors */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #5c6370;
    font-style: italic;
}

.token.punctuation {
    color: #abb2bf;
}

.token.selector,
.token.tag {
    color: #e06c75;
}

.token.property,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.attr-name,
.token.deleted {
    color: #d19a66;
}

.token.string,
.token.char,
.token.attr-value,
.token.builtin,
.token.inserted {
    color: #98c379;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
    color: #56b6c2;
}

.token.atrule,
.token.keyword {
    color: #c678dd;
}

.token.function,
.token.class-name {
    color: #61afef;
}

.token.regex,
.token.important,
.token.variable {
    color: #c678dd;
}

.token.important,
.token.bold {
    font-weight: bold;
}

.token.italic {
    font-style: italic;
}

.token.entity {
    cursor: help;
}

/* Bash specific */
.language-bash .token.function {
    color: #61afef;
}

.language-bash .token.parameter {
    color: #d19a66;
}

/* JSON specific */
.language-json .token.property {
    color: #e06c75;
}

.language-json .token.string {
    color: #98c379;
}

.language-json .token.number {
    color: #d19a66;
}

/* PHP specific */
.language-php .token.variable {
    color: #e06c75;
}

.language-php .token.keyword {
    color: #c678dd;
}

/* SQL specific */
.language-sql .token.keyword {
    color: #c678dd;
}

.language-sql .token.function {
    color: #61afef;
}

/* Selection */
pre[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection {
    background: #3e4451;
    color: inherit;
}

pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
    background: #3e4451;
    color: inherit;
}

/* Scrollbar styling */
pre[class*="language-"]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

pre[class*="language-"]::-webkit-scrollbar-track {
    background: #21252b;
    border-radius: 4px;
}

pre[class*="language-"]::-webkit-scrollbar-thumb {
    background: #4b5263;
    border-radius: 4px;
}

pre[class*="language-"]::-webkit-scrollbar-thumb:hover {
    background: #5c6370;
}
