html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

* {
  box-sizing: border-box;
}

.terminal {
  width: 100%;
  height: 100%;
  padding: 10px;
  color: #7bff7b;
  background: #000;
  font: 14px/1.35 Consolas, "Courier New", monospace;
  overflow: hidden;
}

.output {
  height: calc(100% - 34px);
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
  padding-right: 4px;
}

.line {
  margin: 0 0 2px;
}

.line.error {
  color: #ff7b7b;
}

.line.dim {
  color: #4ccf4c;
}

.prompt-form {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
}

.prompt-label {
  white-space: nowrap;
}

.prompt-input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  color: #7bff7b;
  background: transparent;
  font: inherit;
}
