
body {
  margin: 0;
  padding: 0;
  background-color: #0d1117;
  color: #c9d1d9;
  font-family: monospace;
}
.terminal {
  padding: 20px;
  max-width: 800px;
  margin: auto;
}
#ascii-art {
  color: #58a6ff;
}
#terminal-output {
  margin-bottom: 10px;
  white-space: pre-wrap;
}
.input-line {
  display: flex;
  align-items: center;
}
.prompt {
  color: #2ea043;
  margin-right: 5px;
}
input#command-input {
  background: transparent;
  border: none;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  width: 100%;
  outline: none;
}
.progress-bar {
  background: #161b22;
  border: 1px solid #30363d;
  height: 20px;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
}
.progress-fill {
  background: #2ea043;
  height: 100%;
  width: 0%;
}
