pre[class*="language-"] {
    background-color: #2d2d2d !important;
    
    color: #f8f8f2;

    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 14px;
    line-height: 1.5;

    padding: 1em;
    margin: .5em 0;

    overflow: auto;

    border-radius: 8px;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

pre[class*="language-"] > code {
    color: inherit;
    font-family: inherit;
    background: none; 
    text-shadow: none;
}

.tinymce-content ol {
    list-style-type: decimal !important; /* Menampilkan angka (1, 2, 3) */
    margin-left: 20px;
    padding-left: 20px;
}

.tinymce-content ul {
    list-style-type: disc !important; /* Menampilkan bullet point (•) */
    margin-left: 20px;
    padding-left: 20px;
}

.tinymce-content li {
    margin-bottom: 8px;
    list-style-type: inherit !important;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
    color: #8292a2;
    font-style: italic;
}

.token.punctuation {
    color: #f8f8f2;
}

.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
    color: #ff6188;
}

.token.boolean,
.token.number {
    color: #ae81ff; 
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
    color: #a6e22e; 
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
    color: #f8f8f2;
}

.token.atrule,
.token.attr-value,
.token.function,
.token.class-name {
    color: #66d9ef;
}

.token.keyword {
    color: #ff6188; 
    font-weight: bold;
}

.token.regex,
.token.important {
    color: #fd971f;
    font-weight: bold;
}

pre[class*="language-"].line-numbers {
    padding-left: 3.8em;
    counter-reset: start;
}
.line-numbers .line-numbers-rows {
    position: absolute;
    pointer-events: none;
    top: 1em;
    font-size: 100%;
    left: -3.8em;
    width: 3em;
    letter-spacing: -1px;
    border-right: 1px solid #555;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.line-numbers-rows > span {
    pointer-events: none;
    display: block;
    counter-increment: start;
}
.line-numbers-rows > span:before {
    content: counter(start);
    color: #8292a2;
    display: block;
    padding-right: 0.8em;
    text-align: right;
}

.copy-to-clipboard-button {
    position: absolute;
    /* top: 0; */
    right: 0;
    transform: translateX(-55%);
    background: #555;
    border: 0;
    color: #fff;
    cursor: pointer;
    padding: 0.25rem 0.6rem;
    font-size: 12px;
    font-family: sans-serif;
    border-radius: 4px;
    opacity: 1;
}
pre:hover .copy-to-clipboard-button {
    opacity: 1;
}
.copy-to-clipboard-button:hover {
    background: #666;
}