/* Basic reset */
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #ffffff;
  font-family: Consolas, monospace;
  font-size: 14px;
  overflow: hidden;
}

/* Terminal window */
#terminal {
  padding: 20px;
  white-space: pre-wrap;
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#terminal::-webkit-scrollbar {
  display: none;
}

/* Each terminal line */
.line {
  color: #ffffff;
  line-height: 1.4;
}

/* Command input line, cursor baseline aligned */
.command-line {
  display: inline;
  font-family: inherit;
  color: #ffffff;
}

/* Blinking underscore cursor */
.cursor {
  display: inline-block;
  width: 8px;
  height: 1em;
  background-color: #ffffff;
  animation: blink 1s steps(1) infinite;
  vertical-align: baseline;
  margin-left: 1px;
}

@keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}
