body {
  margin: 0;
  background-color: #091a32;
  color: #ffffff;
  font-family: monospace;
  padding: 1rem 1.5rem 1rem 1.5rem;
  white-space: pre-wrap;
  overflow-y: scroll;
  height: 100vh;
  user-select: none;
}

#terminal {
  max-width: 100%;
  /* min-height: 90vh; */
  overflow-y: auto;
  outline: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.input {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  margin-top: 0.3rem;
}

#prompt {
  color: #7fffd4;
  margin-right: 0.4rem;
  user-select: text;
}

input {
  background: transparent;
  border: none;
  color: #c0c0c0;
  font: inherit;
  outline: none;
  flex: 1;
  caret-color: #ffd700;
  padding: 0;
  margin: 0;
}

.output {
  margin-left: 1.8rem;
  color: #c0c0c0;
}

.output h1,
.output h2,
.output h3,
.output h4 {
  color: #a0d8ef; /* lighter blueish */
  margin: 0.15em 0;
}

.output a {
  color: #40e0d0; /* turquoise link */
  text-decoration: underline;
}

.motd {
  color: #40e0d0;
  font-weight: bold;
  margin-bottom: 0.2rem;
  white-space: pre;
  user-select: text;
  padding: 0;
  line-height: 1.1;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: #27517b; /* darker blue scrollbar */
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background: #1a355b;
}
