
body {
  margin: 0;
  padding: 0;
  background-color: black;
}

.clear-both { clear: both; }

.consoloid .dialogs-container {
  background-color: black;
  position: relative;
}

.consoloid .dialogs-container .dialogs {
  padding-bottom: 41px;
}
    .dialogs-container .dialog {
        overflow-y: hidden;
    }

#prompt {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: black;
}

.ruler {
  display: inline-block;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: -100px;
  white-space: pre-wrap;
  font-family: Monospace;
  font-size: 1em;
  visibility: hidden;
}

.consoloid .dialog {
  color: grey;
  font-size: 1.5em;
  font-family: Monospace;
  width: 100%;
}

.consoloid .dialog .response {
  font-size: 0.75em;
}

.dialog .prompt, .dialog .expression, .dialog .missing-word {
  float: left;
  padding-right: 0.6em;
}

.dialog .human-text {
  background-color: black;
  border: none;
  border-radius: 2px;
  color: grey;
  font-family: Monospace;
  font-size: 1em;
  margin: -4px;
  margin-right: 0.6em;
  padding-right: 0;
  float: left;
  width: 75%;
}

.dialog .actions {
  float: right;
}

.dialog .actions ul {
  display: inline;
  list-style: none;
  padding-right: 0.75em;
}

.dialog .actions ul li {
  float: right;
  padding: 0.25em 1.25em 0 1.25em;
  margin: -0.5em 0;
}

.dialog .missing-001 {
  color: #f00;
}

.dialog .missing-002 {
  color: #00f;
}

.dialog .request {
  padding: 8px 0;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}

.ui-autocomplete {
  border-radius: 0.5em 0.5em 0 0;
  font-size: 1.5em;
  border: 1px solid grey;
  color: #0f0;
  background: rgba(0,0,0,0.9);
  position: absolute;
  font-family: Monospace;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 1.8em;
}

  .ui-autocomplete div {
    border-bottom: 1px solid grey;
    padding: 5px;
    padding-right: 20px;
    box-sizing: border-box;
    background: none;
    color: grey;
    width: 100%;
    cursor: pointer;
    white-space: nowrap;
    margin: 0.2em;
  }

  .ui-autocomplete div:last-child {
    border-bottom: none;
  }

  .ui-autocomplete div:hover,
  .ui-autocomplete .focused {
    background: grey;
    color: black;
    border-radius: 0.2em;
  }

.response .dialog-options li a {
  color: #0f0;
  text-decoration: none;
}

.response .form {
  border: none;
}

.response .form .element {
  width: 50%;
  float: left;
}

.response .form .element label {
  width: 15em;
  float: left;
}

#consoloid-footer {
  width: 100%;
  height: 100%;
}

#ui-active-menuitem {
  background: #0f0;
  color: #000;
}

a {
  color: cyan;
}

.expression-reference {
  cursor: pointer;
}

.clicked-prompt-mic {
   display: inline-block;
   border-radius: 10em;
   background-color: cyan;
   color: white !important;
   padding: 30px;
   width: 30px;
   height: 30px;
   position: relative;
   margin-bottom: -60px;
   margin-left: -77px;
   right: -38px;
   bottom: 30px;
   text-align: center;
}