body {
  margin: 0;
  background: radial-gradient(circle at center, #000000 0%, #050505 100%);
  color: #33ff33;
  font-family: 'Courier New', Courier, monospace;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

/* Terminal Box */
.terminal {
  width: 90%;
  max-width: 1600px;
  height: 90vh;
  border: 2px solid #33ff33;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.85);
  box-shadow: 0 0 20px #33ff33;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Top Status */
.login-status {
  text-align: right;
  margin-bottom: 10px;
  font-size: 14px;
  color: #00ffaa;
}

/* Output Area */
.output {
  flex-grow: 1;
  overflow-y: auto;
  white-space: pre-wrap;
  padding-right: 10px;
  scrollbar-width: thin;
  scrollbar-color: #33ff33 #000000;
}

/* Input Line */
.input-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

input#user-input {
  flex-grow: 1;
  background-color: transparent;
  color: #33ff33;
  border: none;
  border-bottom: 2px solid #33ff33;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  padding: 5px 0;
  transition: all 0.3s ease;
}

input#user-input:focus {
  border-bottom-color: #00ffaa;
  color: #00ffaa;
}

/* Alerts & Notices */
.alert {
  color: #ff3333;
  font-weight: bold;
  background: rgba(255, 51, 51, 0.1);
  border-left: 4px solid #ff3333;
  padding: 5px 10px;
  margin: 5px 0;
}

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

/* Scrollbar Custom (optional but cool) */
.terminal::-webkit-scrollbar {
  width: 8px;
}
.terminal::-webkit-scrollbar-track {
  background: transparent;
}
.terminal::-webkit-scrollbar-thumb {
  background-color: #33ff33;
  border-radius: 4px;
}
