.terminal-101 {
  background: #1a1a2e;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
  min-height: 70vh;
  max-height: 85vh;
  overflow-y: auto;
  padding: 16px;
  font-family: 'SF Mono', 'Cascadia Code', 'Fira Code', Consolas, monospace;
  font-size: 14px;
  line-height: 1.5;
  color: #e0e0e0;
  cursor: text;
  outline: none;
}

.term-line {
  white-space: pre-wrap;
  word-wrap: break-word;
  min-height: 1.2em;
}

.term-normal {
  color: #e0e0e0;
}

.term-lesson {
  color: #66d9ef;
}

.term-error {
  color: #f92672;
}

.term-philosophy {
  color: #e6db74;
  font-style: italic;
  padding-left: 1em;
}

.term-success {
  color: #a6e22e;
}

.term-prompt {
  color: #e0e0e0;
}

.term-input-line {
  display: flex;
  align-items: center;
}

.term-prompt-text {
  color: #50fa7b;
}

.term-input {
  color: #f8f8f2;
  outline: none;
}

.term-cursor {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  background: #e0e0e0;
  vertical-align: text-bottom;
  animation: term-blink 1s step-end infinite;
}

@keyframes term-blink {
  50% {
    opacity: 0;
  }
}

.term-input-line.disabled {
  display: none;
}

