body {
    margin: 0;
    padding: 0;
    background-color: black;
    color: #fcfcfc;
    font-family: monospace;
    overflow: hidden;
}

#terminal {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px;
}

pre {
    margin: 0;
    white-space: pre-wrap;
    font-size: 16px;
    line-height: 1.5;
}

#input-container {
    display: flex; /* Updated to flex to align the prompt and input */
    align-items: center; /* Vertically align items */
}

#command-prompt {
    color: hsl(120, 94%, 50%); /* Green color */
    margin-right: 5px;
}

#command-input {
    opacity: 1;
    height: auto;
    width: auto;
    pointer-events: auto;
    background-color: black;
    color: #fcfcfc;
    border: none;
    outline: none;
    font-family: monospace;
    font-size: 16px;
    flex-grow: 1; /* Ensure it grows to fit the container */
}

.cursor {
    display: inline-block;
    background-color: #fcfcfc;
    width: 10px;
    height: 1.2em;
    margin-left: 2px;
    vertical-align: middle;
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.red-text {
    color: red;
}
