/* Add this to your existing CSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: black;
  color: #00ff00;
  font-family: "Courier New", Courier, "Lucida Console", monospace;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 20px;
  height: 100vh;
  overflow: hidden;
}

/* Ensure scrolling behavior */
#terminal {
  width: 80%;
  max-width: 800px;
  background-color: black;
  color: #00ff00;
  overflow-y: auto; /* Allow vertical scrolling */
  max-height: 90vh;  /* Limit the height of the terminal */
  padding-right: 10px; /* Space for the scrollbar */
  display: flex;
  flex-direction: column; /* Content should flow from top to bottom */
  padding-bottom: 10px; /* Some padding at the bottom */
  position: relative;
}

/* Scrollbar styling */
#terminal::-webkit-scrollbar {
  width: 8px;
}

#terminal::-webkit-scrollbar-track {
  background: black;
}

#terminal::-webkit-scrollbar-thumb {
  background: #000000;
}

.command-line {
  display: flex;
  align-items: center;
}

.command-line span {
  margin-right: 5px;
}

#command-input {
  background: black;
  color: #00ff00;
  border: none;
  outline: none;
  font-family: "Courier New", Courier, "Lucida Console", monospace;
  width: 90%;
}
