.pwj-viewer {
    font-family: monospace;
    padding: 10px;
    border-radius: 5px;
    overflow: auto;
}

.pwj-viewer ul {
    list-style-type: none;
    padding-left: 20px;
    margin: 0px;
}

.pwj-viewer .key {
    font-weight: bold;
    color: #d14;
}

/* Toggle Button */
.pwj-viewer-toggle {
    cursor: pointer;
    font-weight: bold;
    margin-right: 5px;
}
.pwj-viewer-toggle.square{
    font-size: 10px !important;
    max-height: 9px;
    min-height: 9px;
    border-radius: 2px;
    border: solid 1px #484d79;
    text-align: center;
    padding: 0px 2px;
    font-weight: bolder;
}

.pwj-viewer-toggle.circle{
    max-height: 9px;
    min-height: 9px;
    border: solid 1px #484d79;
    text-align: center;
    padding: 0px 2px;
    font-weight: bolder;
    border-radius: 50%!important;
}

.pwj-viewer-toggle .arrow{
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 2px;
    border: solid 1px #484d79;
}

.pwj-viewer .value {
    color: #195f91;
}

/* Smooth Animation */
.hidden {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}

.visible {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.3s ease-in, opacity 0.3s ease-in;
}
.pwj-viewer-highlight { background-color: yellow; font-weight: bold; }



.pwj-viewer-size
{
    font-style: italic;
    color:#84898c;
    font-size: 12px;
}


