  .dns-status-bar {
    background-color: #007ccc;
    color: #fff;
    font-family: Consolas,"Courier New",monospace;
    font-weight: ;
    font-size: 0.8em;
    position: fixed;
    bottom: 0;
    width: 100vw;
    border-bottom: 1px solid #007ccc;
    text-align: left;
    padding: 0.2rem;
    padding-left: 1rem;
  }

  .pn-terminal-container ::selection {
    background: #FF5E99;
  }

  .pn-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;
    max-width: ;
  }

  .pn-terminal-container output {
    clear: both;
    width: 100%;
    color: #fff;
  }

  .pn-terminal-output-sequence {
    padding-left: 2rem;
    margin-top: 0;
    margin-bottom: 0.8rem;
  }

  .pn-terminal-container output h3 {
    margin: 0;
  }

  .pn-terminal-container output p {
    unicode-bidi: embed;
    font-family: monospace;
    max-width: 90vw;
    word-wrap: break-word;
  }

  .pn-terminal-input-line {
    display: block;
    clear: both;
    position: relative;
    width: 100%;
  }
  .pn-terminal-input-line > div:nth-child(2) {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    box-flex: 1;
  }

  .pn-terminal-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;
  }

  .pn-terminal-cmdline {
    outline: none;
    background-color: #1e1e1e;
    margin: 0;
    font: inherit;
    border: none;
    color: inherit;
    width: 100%;
    padding: 0;
  }

  .pn-terminal-cmdline:focus {
    background-color: rgba(255,255,255,0.05);
  }

  .pn-terminal-cmdline[readonly] {
      background-color: transparent;
  }

  .pn-terminal-previous-input {
      white-space: pre;
  }

  .pn-terminal-ls-files {
    height: 45px;
    -webkit-column-width: 100px;
    -moz-column-width: 100px;
    -o-column-width: 100px;
    column-width: 100px;
  }

  .pn-terminal-cmdline-wrapper {
      position: relative;
      display: inline-block;
      width: 60vw;
  }

  .pn-selected {
    background: #999;
    color: #fff;
  }

  .pn-terminal-pn-terminal-completion-container-container {
      position: absolute;
      left: 0;
      top: 0;
      transform: translateY(2rem);
      white-space: nowrap;
      max-width: 70vw;
      margin-bottom: 2rem;
  }

  .pn-terminal-completion-container {
    background: #bbb;
    overflow-x: auto;
    color: black;
    width: 100%;
    height: 100%;
  }

  .pn-terminal-completion-hint {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #888;
    color: #000;
    transform: translateY(100%);
    max-width: 70vw;
    white-space: normal;
  }
  
  .pn-terminal-completion-column {
      display: inline-block;
      padding-right: 2rem;
  }
  
  /************************************************************/
  /* SVG Clock                                                */
  /************************************************************/
  
  .pn-terminal-clock-container {
    display: none /*inline-block*/;
    position: relative;
    width: 200px;
    vertical-align: middle;
    overflow: hidden;
  } 
  
  .pn-terminal-clock-container > svg > circle {
    stroke-width: 2px;
    stroke: #fff;
  }
  
  .hour, .min, .sec { 
    stroke-width: 1px;
    fill: #333;
    stroke: #555;
  }
  
  .sec {
     stroke: #f55;
  }
  
  