/* The console container element */
body { background-color: black; font-size: 16px; font-family: Courier; overflow: hidden; padding: 0 0 0 0;}

#canvas {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    border: 1px solid white;
    background: black;
}

#console {
    position: absolute;
    height: 200px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color:black;
    border: white solid 1px;
}

.parents {
    font-weight: bold;
}

/* The inner console element. */
.jqconsole {
    padding: 10px;
}
/* The cursor. */
.jqconsole-cursor {
    background-color: gray;
}
/* The cursor color when the console looses focus. */
.jqconsole-blurred .jqconsole-cursor {
    background-color: #666;
}
/* The current prompt text color */
.jqconsole-prompt {
    color: White;
}
/* The command history */
.jqconsole-old-prompt {
    color: White;
    font-weight: normal;
}
/* The text color when in input mode. */
.jqconsole-input {
    color: White;
}
/* Previously entered input. */
.jqconsole-old-input {
    color: White;
    font-weight: normal;
}
/* The text color of the output. */
.jqconsole-output {
    color: green;
}
.jqconsole-return, .jqconsole-header {
    color: gray;
}
.jqconsole-error {
    color: red;
}
