/**
* CSS codes for the simulated console window (and other style features)
*/

/**
* Set the size and appearance of the "console" window and its contents
*/
#results {
    width: 1400px;
    height: 400px;
    border: 1px solid #000;
    padding: 10px;
    overflow: auto;
    background: #000;
    font-family: "Courier New", Courier, monospace;
    font-size: 13px;
    color: #fff;
    white-space: nowrap;
  }
  
  body.waiting * {
    cursor: progress;
  }
  
  pre {
    margin: 0;
  }
  