/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  background-color: #1e1e1e;
  color: #89a2b8;
  font-family: monospace;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
}

/* CLI container */
#cli-container {
  width: 100%;
  height: 100%;
  background-color: #000;
  display: flex;
  flex-direction: column;
  padding: 10px;
  overflow-y: auto;
}

/* Output and input styling */
#output {
  flex-grow: 1;
  overflow-y: auto;
  font-size: 14px;
  font-family: monospace;
  line-height: 1.5;
}

/* Input line styling */
#input-line {
  display: flex;
}

.prompt {
  margin-right: 5px;
  color: #89a2b8;
  font-size: 14px;
  font-family: monospace;
}

#cli-input {
  font-family: monospace;
  background: none;
  border: none;
  color: #89a2b8;
  outline: none;
  flex-grow: 1;
  margin-left: 3px;
  text-transform: lowercase;
  font-size: 14px;
  line-height: 1.5;
}

/* Hidden audio player */
#audio-player {
  display: none;
}
