::selection {
    background: #FF5E99;
  }

  html, body {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  body {
    background-color: #555;
  }

  #terminal_container {
    padding: 1em 1em 1em 1em;
    background-color: #1e1e1e;
    font-size: 11pt;
    font-family: Consolas,"Courier New",monospace;
    color: #ccc;
    min-height: 100%;
    height: 100%;
    overflow-y: scroll;
    width: 100%;
    text-align: left;
  }

  #terminal_container output {
    clear: both;
    width: 100%;
    color: #fff;
  }

  .output_sequence {
    padding-left: 2rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
  }

  #terminal_container output h3 {
    margin: 0;
  }

  #terminal_container output p {
    white-space: pre;
    unicode-bidi: embed;
    font-family: monospace;
    white-space: pre;
  }

  .input-line {
    display: block;
    clear: both;
    position: relative;
    width: 100%;
  }
  .input-line > div:nth-child(2) {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
  }

  .prompt {
    white-space: nowrap;
    display: inline-block;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    color: #96b38a;
    vertical-align: top;
    text-align: right;
  }

  .cmdline {
    outline: none;
    background-color: #1e1e1e;
    margin: 0;
    font: inherit;
    border: none;
    color: inherit;
    width: 100%;
    padding: 0;
  }

  .cmdline[readonly] {
      background-color: transparent;
  }

  .previous-terminal-input {
      white-space: pre;
  }

  .ls-files {
    height: 45px;
    -webkit-column-width: 100px;
    -moz-column-width: 100px;
    -o-column-width: 100px;
    column-width: 100px;
  }

  .cmdLineWrapper {
      position: relative;
      display: inline-block;
  }

  .completion.selected {
    background: #999;
    color: #fff;
  }

  .completion-container-container {
      position: absolute;
      left: 0;
      top: 0;
      transform: translateY(2rem);
      white-space: nowrap;
      max-width: 70vw;
      margin-bottom: 2rem;
  }

  .completion-container {
    background: #bbb;
    overflow-x: auto;
    color: black;
    width: 100%;
    height: 100%;
  }

  .completion-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #888;
    color: #000;
    transform: translateY(100%);
    max-width: 70vw;
    white-space: normal;
  }
  
  .completion-column {
      display: inline-block;
      padding-right: 2rem;
  }
  
  /************************************************************/
  /* SVG Clock                                                */
  /************************************************************/
  
  .clock-container {
    display: none /*inline-block*/;
    position: relative;
    width: 200px;
    vertical-align: middle;
    overflow: hidden;
  } 
  
  .clock-container > svg > circle {
    stroke-width: 2px;
    stroke: #fff;
  }
  
  .hour, .min, .sec { 
    stroke-width: 1px;
    fill: #333;
    stroke: #555;
  }
  
  .sec {
     stroke: #f55;
  }
  
  