/* Terminal App Styles */

.terminal-app {
  background: #101010;
  color: #33ff00;
  font-family: 'Courier New', monospace;
  padding: 10px;
  height: 100%;
  overflow-y: auto;
  font-size: 13px;
}

.term-line {
  margin-bottom: 2px;
  line-height: 1.4;
}

.term-input-line {
  display: flex;
}

.term-prompt {
  color: #00bfff;
  margin-right: 8px;
}

#term-input {
  background: transparent;
  border: none;
  color: #33ff00;
  font-family: inherit;
  font-size: inherit;
  flex: 1;
  outline: none;
}

