.shell {
  position: relative;
  z-index: 60;
  margin: 0 -24px 0px;
  padding: 0 24px 16px;
  font-size: 13px;
  line-height: 1.7;
  border-bottom: 1px dashed var(--line);
}

@media (max-width: 720px) {
  .shell { margin: 0 -16px 16px; padding: 0 16px 12px; }
}

.shell__line { display: flex; flex-wrap: wrap; gap: 0; white-space: pre-wrap; }
.shell__line--out { color: var(--fg); }
.shell__line--err { color: var(--err); }
.shell__line--info { color: var(--dim); }
.shell__line--accent { color: var(--accent); }
.shell__line--prompt { color: var(--dim); }

.shell__form {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: inherit;
  font-size: inherit;
  color: var(--fg);
}

.shell__prompt { color: var(--fg); white-space: nowrap; flex-shrink: 0; }
.shell__prompt .host { color: var(--accent); }
.shell__prompt .path { color: var(--fg); }
.shell__prompt .dollar { color: var(--fg); }

.shell__input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--bright);
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  margin: 0;
  caret-color: var(--accent);
}
.shell__input::placeholder { color: var(--dim); font-style: italic; }

.shell__table { width: 100%; border-collapse: collapse; margin: 4px 0; color: var(--fg); }
.shell__table td { padding: 1px 12px 1px 0; vertical-align: top; }
.shell__table td:first-child { color: var(--accent); white-space: nowrap; }
.shell__table td:last-child { color: var(--dim); padding-right: 0; }
.shell__table code { color: var(--bright); background: transparent; padding: 0; font: inherit; }