/* Root element */
.json-document {
    padding: 0 8px;
}

/* Syntax highlighting for JSON objects */
ul.json-dict, ol.json-array {
    list-style-type: none;
    margin: 0 0 0 1px;
    border-left: 1px dotted #444;
    padding-left: 1.8em;
    font-size: 11px;
}
.json-string {
    color: #11b400;
    font-size: 11px;
}
.json-literal {
    color: #3f93ff;
    letter-spacing: -1px;
    font-size: 11px;
}

/* Toggle button */
a.json-toggle {
    position: relative;
    color: inherit;
    text-decoration: none;
}
a.json-toggle:focus {
    outline: none;
}
a.json-toggle:before {
    font-size: 0.9em;
    color: #c0c0c0;
    content: "\25BC"; /* down arrow */
    position: absolute;
    display: inline-block;
    width: 1em;
    text-align: center;
    line-height: 1.6em;
    left: -1.2em;
}
a.json-toggle:hover:before {
    color: #aaa;
}
a.json-toggle.collapsed:before {
    /* Use rotated down arrow, prevents right arrow appearing smaller than down arrow in some browsers */
    transform: rotate(-90deg);
}

/* Collapsable placeholder links */
a.json-placeholder {
    color: #aaa;
    padding: 0 1em;
    text-decoration: none;
}
a.json-placeholder:hover {
    text-decoration: underline;
}