body {
  margin: 0;
  background-color: black;
  padding: 20px;
}

#terminal {
  position: relative; /* Add this for positioning */
  padding: 20px;
  background: #071311;
  border: 2px solid #a6c9c4;
  color: #a6c9c4;
  font-family: 'Courier New', monospace;
  font-size: 32px;
  line-height: 1.4;
  white-space: pre-wrap;
  height: 90vh;
  overflow-y: auto;
  text-shadow: 0 0 5px #a6c9c4;
  /* Custom scrollbar for Webkit browsers */
  scrollbar-width: thin;
  scrollbar-color: #a6c9c4 #071311;
}

/* Webkit scrollbar styling */
#terminal::-webkit-scrollbar {
  width: 12px;
  background: #071311;
}
#terminal::-webkit-scrollbar-thumb {
  background: #a6c9c4;
  border-radius: 6px;
  border: 2px solid #071311;
}
#terminal::-webkit-scrollbar-thumb:hover {
  background: #7fa7a2;
}
#terminal::-webkit-scrollbar-track {
  background: #071311;
}

.caret {
  display: inline-block;
  width: 1px;
  height: 1.2em;
  background-color: #a6c9c4;
  vertical-align: top;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 6px,
    rgba(0, 0, 0, 0.1) 9px
  );
  pointer-events: none;
}

input {
  caret-color: inherit;
  background: none;
  color: inherit;
  border: none;
  outline: none;
  font: inherit;
  width: auto;
  text-shadow: 0 0 5px #a6c9c4;
}

#watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
  pointer-events: none;
  max-width: 60%;
  max-height: 60%;
  z-index: 0;
}