.text-editor__content-wrapper {
  display: block !important;
}

/* Just syntax highlighting colors - no background or other changes */
.code-block .hljs-keyword {
    color: #569cd6; /* Blue - keywords like sudo, if, for */
}

.code-block .hljs-string {
    color: #ce9178; /* Orange - strings */
}

.code-block .hljs-comment {
    color: #6a9955; /* Green - comments */
}

.code-block .hljs-number {
    color: #b5cea8; /* Light green - numbers */
}

.code-block .hljs-function,
.code-block .hljs-title {
    color: #dcdcaa; /* Yellow - functions */
}

.code-block .hljs-variable {
    color: #9cdcfe; /* Light blue - variables */
}

.code-block .hljs-built_in {
    color: #4ec9b0; /* Cyan - built-in commands */
}





