.terminal-input-line {
  display: flex;
  flex-shrink: 0;
  padding-top: 4px;
  align-items: center;
  margin: 0;
  border: 0;
  background: transparent;
}

.terminal-tab-btn {
  display: none;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid #ff00aa;
  color: #ff00aa;
  font: inherit;
  font-size: 11px;
  padding: 4px 10px;
  margin-left: 8px;
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  text-shadow: 0 0 10px #ff00aa;
}

.terminal-tab-btn:active {
  background: #ff00aa;
  color: #1a0030;
  text-shadow: none;
  box-shadow: 0 0 15px #ff00aa;
}

.terminal-prompt {
  margin-right: 0;
  flex-shrink: 0;
  text-shadow: 0 0 10px currentColor;
}

.terminal-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  color: #fff;
  font: inherit;
  padding: 0;
  margin: 0;
  margin-left: 1ch;
  min-width: 0;
  caret-color: #00ffff;
  -webkit-appearance: none;
  appearance: none;
  text-shadow: 0 0 8px rgba(255, 0, 170, 0.5);
}

.terminal-input:focus {
  outline: none;
  box-shadow: none;
}

.terminal-input::selection {
  background: rgba(255, 0, 170, 0.4);
}

.terminal-input::-webkit-contacts-auto-fill-button,
.terminal-input::-webkit-credentials-auto-fill-button {
  visibility: hidden;
  display: none !important;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.prompt-user {
  color: #ff00aa;
  text-shadow: 0 0 15px #ff00aa;
}
.prompt-sep {
  color: rgba(255, 255, 255, 0.8);
}
.prompt-dir {
  color: #00ffff;
  text-shadow: 0 0 15px #00ffff;
}
