pre{
    text-align: left;
}

code, pre, kbd, samp{
    font-family: 'Cascadia Mono';
    color: var(--text-muted2);
}

.code-example{
    display: flex; flex-flow: column nowrap;
    background-color: #1d1d1d;
    color: #e7e7e7;
    border-radius: 1rem;
    overflow: hidden;
}

.code-example > .example-header{
    padding: .5rem 1rem;
    border-bottom: 3px solid var(--accent);
}

.code-example > .example-content{
    padding: .5rem 1rem;
    margin-top: var(--scrollbar-wh);
    color: #e7e7e7;
    text-align: left;
    overflow-x: scroll;
}

.code-example > .output{
    display: flex; flex-flow: column nowrap;
    overflow: scroll hidden;
    margin-top: 0;
    color: rgb(231, 231, 231);
    border-top: 3px solid var(--accent);
    
}



.output .wrap{
    display: flex; flex-flow: column nowrap;
    min-width: 100%;
    width: fit-content;
    border-radius: .5rem;
}

.output code{
    display: inline-block;
    padding: 0 1rem;
    padding-right: 1rem;
    color: #e7e7e7;
    white-space: nowrap;
    min-width: 100%;

}


.output:before{
    content: '❯';
    margin-right: .5rem;
}

.output{
    display: flex;
    padding: 0 .2rem;
    margin-top: .5rem;
    border-radius: .5rem;
    white-space: wrap;
    background-color: #292929;
}

[type='error']{
    background-color: #5e3333;
}

.output[type='error']:before{
    content: '⊗';
    color: #ff0000;
}

.comment{ color: #959497 }

.func{ color: #bf67ff }
.obj{ color: #facc15 }

.num{ color: #C4EED0; }
.str{ color: #fe8d59; }

