/* assets/css/prism-custom.css */

/* Base Code Block Styling */
code[class*="language-"],
pre[class*="language-"] {
    color: #4e4e4e;
    /* Dark Grey Text */
    background: none;
    font-family: "Consolas", "Monaco", "Andale Mono", "Ubuntu Mono", monospace;
    font-size: 0.95em;
    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;
}

/* Pre Container */
pre[class*="language-"] {
    padding: 1.5rem;
    margin: 1rem 0;
    overflow: auto;
    /* Soft Pink Background */
    background: #fff5f8;
    /* Rounded Borders */
    border-radius: 12px;
    /* Cute Border */
    border: 2px solid #fceef1;
}

/* Inline Code */
:not(pre)>code[class*="language-"] {
    background: #fff5f8;
    padding: .1em;
    border-radius: .3em;
    white-space: normal;
}

/* --- Syntax Colors (Gentle/Feminine Palette) --- */

/* Comment */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #9aa6b3;
    /* Soft Grey-Blue */
    font-style: italic;
}

/* Punctuation */
.token.punctuation {
    color: #999;
}

/* Property, Tag, Constant */
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
    color: #d06283;
    /* Deep Pink */
    font-size: 1em;
    /* Reset font size if overriden by Bulma .number */
    background-color: transparent;
    /* Reset bg if overriden */
    margin-right: 0;
    /* Reset margin */
    display: inline;
    /* Reset display */
    padding: 0;
    min-width: 0;
}

/* Selector, Attr-name, String, Char */
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
    color: #6fb5a3;
    /* Soft Teal/Green */
}

/* Operator, Entity, URL */
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
    color: #c98a6d;
    /* Soft Teracotta */
}

/* Keyword (Important) */
.token.atrule,
.token.attr-value,
.token.keyword {
    color: #be75a3;
    /* Soft Purple/Mauve */
}

/* Function, Class Name */
.token.function,
.token.class-name {
    color: #e69138;
    /* Soft Orange */
}

/* Regex */
.token.regex,
.token.important,
.token.variable {
    color: #e90;
}

.token.important,
.token.bold {
    font-weight: bold;
}

.token.italic {
    font-style: italic;
}

.token.entity {
    cursor: help;
}