body {
  margin: 0;
  font-family: "Courier New", Courier, monospace;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.terminal {
  width: 400px;
  background-color: #000;
  border: 2px solid #00ff00;
  padding: 10px;
  color: #00ff00;
}

.header {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 10px;
}

.status {
  color: #888;
}

.screen {
  height: 300px;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid #00ff00;
}

.screen p {
  margin: 0;
  white-space: pre;
}

.prompt {
  color: #00ff00;
}

.user {
  color: #00ff00;
}

.input-area {
  display: flex;
  margin-top: 10px;
}

input {
  background: none;
  border: none;
  color: #00ff00;
  outline: none;
  width: 100%;
  font-family: "Courier New", Courier, monospace;
}

input::placeholder {
  color: #555;
}

.bold-message {
  font-weight: bold;
}

.option {
  display: inline;
  margin-right: 10px;
  cursor: pointer;
}

.option.selected {
  text-decoration: underline;
}
