.terminal {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-elevated);
  box-shadow: var(--shadow-sm);
}

.terminal__titlebar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: #eceef4;
}

.terminal__dots {
  display: flex;
  gap: 7px;
}

.terminal__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal__dot--red { background: #ff5f57; }
.terminal__dot--yellow { background: #febc2e; }
.terminal__dot--green { background: #28c840; }

.terminal__title {
  flex: 1;
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  padding-right: 40px;
}

.terminal__body {
  padding: 18px 16px 22px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.8;
}

.terminal__meta {
  color: #9ca3af;
  margin-bottom: 12px;
}

.terminal__line {
  margin-bottom: 4px;
}

.terminal__prompt {
  color: var(--color-primary);
  font-weight: 700;
}

.terminal__cmd {
  color: var(--color-text);
}

.terminal__output {
  display: flex;
  gap: 8px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.terminal__arrow {
  color: #9ca3af;
}
