/*
 * 
 *  User console styling
 * 
 */
 
 
 /*debugging console */
#log-container { 
    overflow: auto;
    height: 250px;
    border: 1px solid black;
    width: 100%;
    margin: auto;
    background-color: white;
}

.log-warn { color: orange }
.log-error { color: red }
.log-info { color: skyblue }
.log-log { color: silver }
.log-warn, .log-error { font-weight: bold; }