.terminal-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #1e1e2e;
  color: #cdd6f4;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 13px;
}

.terminal-output {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  white-space: pre-wrap;
  word-break: break-all;
  user-select: text;
  -webkit-user-select: text;
}

.terminal-line {
  line-height: 1.5;
}

.terminal-prompt-text {
  color: #89b4fa;
}

.terminal-path {
  color: #a6e3a1;
}

.terminal-command-text {
  color: #cdd6f4;
}

.terminal-output-text {
  color: #bac2de;
}

.terminal-error-text {
  color: #f38ba8;
}

.terminal-success-text {
  color: #a6e3a1;
}

.terminal-info-text {
  color: #89b4fa;
}

.terminal-input-line {
  display: flex;
  align-items: center;
  padding: 0 12px 12px;
  gap: 0;
}

.terminal-input-line .terminal-prompt-text,
.terminal-input-line .terminal-path {
  white-space: nowrap;
  flex-shrink: 0;
}

.terminal-input {
  flex: 1;
  background: transparent;
  color: #cdd6f4;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  padding: 0 4px;
  user-select: text;
  -webkit-user-select: text;
}
