<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

#MessagePanelCTNR{
    position:fixed;
    top:0px;
    width:100%;
    background-color: rgba(20,20,20,0.8);
    color:#fff;
    z-index:1000;
    box-sizing: border-box;
    /* overflow: auto;
    max-height: 40%; */
    border-bottom: 3px solid grey;
    padding: 4px;
    display:none;

    margin: 0;
    height: 34em;
    padding: 0;
    overflow: hidden;
}
#MessagePanelBtnsDiv {
    background: #1a1a1a;
    padding: 5px;
    text-align: center;
    opacity: 0.7;

    display: block;
    height: 2em;
}
#MessagePanelCTNR .metrobtns {
    display: inline-block;
    padding: .25em .5em;
    border: solid 1px whitesmoke;
    margin: 0 0.25em;
    color: whitesmoke;
    background: none;
    cursor: pointer;
}
#MessagePanelCTNR .metrobtns:hover {
    background-color: whitesmoke;
    color: black;
}
#MessagePanelCTNR .metrobtns:active {
    position: relative;
    top: 1px;
    left: 1px;
}
#MessagePanelCTNR li::before {
    content: '&gt;&gt; ';
    font-family: monospace;
}

#MessagePanelCTNR ul {
    /* padding-left: 3em; */
    font-family: monospace;
    display: block;
    overflow-y: auto;
    height: 30em;
    margin: 0;
    padding-top: .5em;
    padding-bottom: 0.5em;
    padding-left: 3.5em;
}

#MessagePanelCTNR li {
    list-style: decimal-leading-zero;
    background: none;
    white-space: pre;
}
#MessagePanelCTNR li.error {
    background-color: rgba(255,0,0,0.5); /* red */
}
#MessagePanelCTNR li.warning {
    background-color: rgba(255,180,0,0.5); /* orange-yellow */
}
#MessagePanelCTNR li.info {
    background-color: rgba(0,255,255,0.5); /* cyan */
}
#MessagePanelCTNR li.success {
    background-color: rgba(0,255,0,0.5); /* green */
}

#MessagePanelCTNR span.time {
    color: lightgrey;
}
#MessagePanelCTNR span.source {
    color: salmon;
}
#MessagePanelCTNR span.data {
    color: antiquewhite;
}
</pre></body></html>