.terminal-wrapper {
  background: #0c111c;
  color: #e5e7eb;
  border-radius: 14px;
  border: 1px solid #111827;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.terminal-output {
  padding: 16px;
  flex: 1;
  overflow-y: auto;
  font-family: var(--mono);
  line-height: 1.5;
  background: radial-gradient(120% 120% at 20% 20%, rgba(96, 165, 250, 0.06), transparent 55%),
    radial-gradient(140% 140% at 80% 0%, rgba(192, 132, 252, 0.06), transparent 40%),
    #0b1020;
}

.terminal-line {
  margin-bottom: 10px;
}

.terminal-line .label {
  color: #60a5fa;
  font-weight: 700;
}

.terminal-line .text-muted {
  color: #9ca3af;
}

.terminal-line .text-info {
  color: #a5f3fc;
}

.terminal-line .text-warn {
  color: #facc15;
}

.terminal-line .text-error {
  color: #f87171;
}

.terminal-form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #0f172a;
  border-top: 1px solid #111827;
}

.prompt {
  color: #22d3ee;
  font-family: var(--mono);
}

.terminal-input {
  flex: 1;
  padding: 10px 12px;
  background: #0b1222;
  color: #e5e7eb;
  border: 1px solid #1f2937;
  border-radius: 10px;
  outline: none;
  font-family: var(--mono);
}

.terminal-input:focus {
  border-color: #60a5fa;
}

.terminal-output .command {
  color: #93c5fd;
  font-weight: 700;
}

.terminal-output .topic-line {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.terminal-output .pill {
  border: 1px solid #1f2937;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 0.8rem;
  color: #9ca3af;
}
