#retro-cli-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

#retro-cli {
  width: 90%;
  max-width: 850px;
  height: 65%;
  background: #1c1e22;
  color: #ffffff;
  font-family: "Menlo", "Monaco", "Courier New", monospace;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

#retro-cli .header {
  background: #2d2f34;
  padding: 10px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: move;
  user-select: none;
  flex-shrink: 0;
}

#retro-cli .mac-btns {
  display: flex;
  gap: 8px;
  position: absolute;
  left: 16px;
}

#retro-cli .mac {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

#retro-cli .mac.red { background: #ff5f57; }
#retro-cli .mac.yellow { background: #ffbd2e; }
#retro-cli .mac.green { background: #28ca41; }

#retro-cli .header .title {
  color: #98999b;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

#retro-cli .terminal-body {
  flex: 1;
  padding: 12px 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

#retro-cli .output {
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 1.4;
}

#retro-cli .input-line {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
}

#retro-cli .prompt {
  color: #ffffff;
  white-space: nowrap;
}

#retro-cli .cli-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  outline: none;
  caret-color: #ffffff;
}

.last-login {
  margin-bottom: 8px;
  color: #ffffff;
}

.history-line {
  margin-bottom: 4px;
}
