main {
  padding: 1em;
}

.terminal {
  background-color: #000;
  color: #33ff33;
  font-family: 'Courier New', monospace;
  font-size: 1em;
  border: 2px solid #33ff33;
  border-radius: 6px;
  padding: 1em;
  height: 500px;
  overflow-y: auto;
  white-space: pre-wrap;
}

.terminal a {
  color: #33ff33;
  text-decoration: underline;
}

.terminal-input {
  background: none;
  border: none;
  color: #33ff33;
  font-family: 'Courier New', monospace;
  font-size: 1em;
  outline: none;         /* Removes default browser focus ring */
  width: 100%;
  caret-color: transparent;
}

.terminal::-webkit-scrollbar {
  width: 8px;
}

.terminal::-webkit-scrollbar-track {
  background: transparent;
}

.terminal::-webkit-scrollbar-thumb {
  background-color: #33ff33;
  border-radius: 4px;
  border: none;
}

.terminal::-webkit-scrollbar-button {
  display: none;
}

/* For Firefox */
.terminal {
  scrollbar-width: thin;
  scrollbar-color: #33ff33 transparent;
}

.terminal-input::selection {
  background: #33ff33;       /* Neon green background */
  color: #000;               /* Black text for good contrast */
}

input[type="password"] {
  outline: none;
  border: none;
  box-shadow: none;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}