body {
  margin: 0;
  background-color: black;
  color: #33ff33;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.terminal {
  width: 90%;
  max-width: 1700px;
  height: 95vh;
  border: 2px solid #33ff33;
  padding: 10px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.login-status {
  text-align: right;
  margin-bottom: 5px;
}

.output {
  flex-grow: 1;
  overflow-y: auto;
  white-space: pre-wrap;
}

.input-line {
  display: flex;
  align-items: center;
  gap: 5px;
}

input#user-input {
  flex-grow: 1;
  background-color: black;
  color: #33ff33;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
}

.alert, .notice {
  color: yellow;
  font-weight: bold;
}

.notice {
  color: #00ffcc;
  background: rgba(0, 255, 204, 0.1);
  border-left: 4px solid #00ffcc;
  padding: 5px 10px;
  margin: 5px 0;
  font-weight: bold;
}