* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #121212;
  color: #00ff66;
  font-family: 'Consolas', 'Courier New', Courier, monospace;
  font-size: 15px;
  padding: 20px;
  min-height: 100vh;
}

#terminal {
  max-width: 900px;
  margin: 0 auto;
  background-color: #1e1e1e;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid #333;
}

.line {
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.5;
  margin-bottom: 4px;
}

.user-command {
  color: #ffffff;
  font-weight: bold;
}

.response {
  color: #cccccc;
}

.error {
  color: #ff5555;
}

.highlight {
  color: #00e5ff;
}

.input-line {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.prompt {
  color: #00e5ff;
  font-weight: bold;
  margin-right: 10px;
  white-space: nowrap;
}

#cmd-input {
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
}