body {
  margin: 0;
  font-family: monospace;
  background-color: #212121;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.terminal {
  width: 600px;
  border-radius: 8px;
  background-color: #333;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.header {
  background-color: #444;
  display: flex;
  align-items: center;
  padding: 6px;
}

.buttons {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ff5f57;
  display: flex;
  margin-right: 8px;
}

.red, .yellow, .green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: auto;
}

.title {
  font-size: 14px;
  color: #fff;
}

.content {
  padding: 10px;
  white-space: pre-line;
}

.command {
  color: #78dce8;
}

.section-title {
  color: #78dce8;
  font-weight: bold;
  margin-top: 10px;
  display: block;
}

.description {
  display: block;
  margin-left: 20px;
}

/* Styles for the typewriter animation */
.cursor {
  color: #00ff00; /* Green cursor as requested */
  animation: blink-animation 1s step-end infinite;
  /* Using opacity might be smoother than color change if text color varies */
}

@keyframes blink-animation {
  from, to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* .typing-active could be used for additional styling if needed, */
/* for example, to ensure the line has a minimum height or specific background. */
/* For now, it primarily serves to scope the cursor or active typing process. */

/* .typewriter-text elements are spans. If they were block elements, */
/* min-height might be useful. As inline-block or spans within pre, */
/* they should flow naturally with the text content added by JS. */
