body {
  background-color: black;
  color: white;
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: 0;
}

#terminal {
  padding: 10px;
}
span {
  color: lime;
}
#output {
  white-space: pre-wrap;
}

#input-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.prompt {
  margin-right: 5px;
}

#input {
  background: black;
  border: none;
  color: white;
  font-family: inherit;
  font-size: 16px;
  width: 100%;
  outline: none;
}

#output::-webkit-scrollbar {
  width: 8px;
}

#output::-webkit-scrollbar-thumb {
  background: white;
  border-radius: 4px;
}

#output::-webkit-scrollbar-thumb:hover {
  background: rgb(111, 255, 0);
}
