<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.jsonView{
    margin-left: 20px;
    font-family: Consolas, "Lucida Console", Menlo, "dejavu sans mono", monospace;
    font-size: 16px;
    line-height: 16px;
    padding: 2px;
    cursor: default;
    color: rgb(66, 66, 66);
    white-space: nowrap;
    -webkit-user-select: none;
}

.jsonView&gt;div{
    display: inline-block;
}

.jsonView&gt;.children, .jsonView.insert{
    display: block;
}

.jsonView&gt;.name{
    color: rgb(136, 19, 145);
}

.jsonView&gt;.separator:before{
    content: ":";
}

.jsonView&gt;.separator {
    padding-right: 5px;
}

.jsonView&gt;.value.null{
    color: rgb(128, 128, 128);
}

.jsonView&gt;.value.boolean, .jsonView&gt;.value.number{
    color: rgb(28, 0, 207);
}

.jsonView&gt;.value.string:not(.edit):before, .jsonView&gt;.value.string:not(.edit):after{
    content: "\"";
}

.jsonView&gt;.value.string {
    color: rgb(196, 26, 22);
}

.jsonView&gt;.name:hover, .jsonView&gt;.value:hover{
    background-color: rgba(56, 121, 217, 0.1);
}

.jsonView&gt;.expand, .jsonView&gt;.collapse{
    min-width: 20px;
    margin-left: -20px;
    cursor: pointer;
}

.jsonView&gt;.expand:before{
    content: '\25B6';
}

.jsonView&gt;.collapse:before{
    content: '\25BC';
}

.jsonView&gt;.edit{
    padding: 0px 5px 0px 5px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
}

.jsonView&gt;.edit br{
    display: none;
}

.jsonView&gt;.edit *{
    display: inline;
    white-space: nowrap;
}

.jsonView&gt;.value.edit{
    color: rgb(0, 0, 0);
}

.jsonView&gt;.delete:before{
    content: 'X';
}

.jsonView&gt;.delete{
    opacity: 0;
    display: inline;
    padding: 3px;
    margin-left: 20px;
    cursor: pointer;
    color: rgb(150, 150, 150);
}

.jsonView&gt;.delete:hover{
    opacity: 1;
    color: rgb(0, 0, 0);
    background: rgb(220, 220, 220);
}

.jsonView&gt;.insert:before{
    content: '+';
}

.jsonView&gt;.insert{
    display: none;
    color: rgb(150, 150, 150);
    cursor: pointer;
}

.jsonView.expanded&gt;.insert, .jsonView.expanded&gt;.insert{
    display: inline-block;
    margin-left: 20px;
    padding: 3px;
}

.jsonView&gt;.insert:hover{
    color: rgb(0, 0, 0);
    background: rgb(220, 220, 220);
}</pre></body></html>