/* css/styles.css */

/* Base styling for a dark, retro console look */
* {
  box-sizing: border-box;
}
body {
  background-color: #2d2d2d;
  color: #00ff00;
  font-family: monospace;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
#terminal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  overflow-y: auto;
}
.line {
  width: 100%;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.prompt {
  color: #00ff00;
}
.input {
  display: inline;
}
.cursor {
  display: inline-block;
  width: 8px;
  height: 1em;
  background-color: #00ff00;
  margin-left: 2px;
  transform: translateY(2px); /* Shift cursor down by 2px to better align with text */
  animation: blink 1s steps(2, start) infinite;
}
@keyframes blink {
  to { visibility: hidden; }
}
