
body {
  margin: 0;
  background: black;
  color: white;
  font-family: monospace;
}

#terminal {
  padding: 10px;
  height: 88vh;
  overflow-y: auto;
}

#bottom {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex;
  background: black;
  padding: 10px;
  border-top: 1px solid white;
}

input {
  flex: 1;
  background: black;
  border: none;
  color: white;
  outline: none;
  font-size: 16px;
}

button {
  margin-left: 10px;
  padding: 10px;
  cursor: pointer;
}

#status {
  font-size: 12px;
  color: gray;
}

