body {
  background-color: #0c0c0c;
  color: #00afff;
  font-family: 'Fira Code', monospace;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.terminal-container {
  width: 80%;
  max-width: 800px;
  background: #111;
  border: 2px solid #00afff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 175, 255, 0.3);
}
#terminal-output {
  height: 400px;
  overflow-y: auto;
  white-space: pre-wrap;
  margin-bottom: 10px;
  font-size: 14px;
}
.terminal-input {
  display: flex;
  align-items: center;
}
.prompt {
  margin-right: 10px;
  color: #00afff;
}
#command-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
}