body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.cmd-container {
    background-color: black;
    color: lightgray;
    font-family: 'Consolas', monospace;
    font-size: 16px; /* Adjust text size here */
    padding: 20px;
    height: 100%;
    box-sizing: border-box;
    overflow-y: auto;
}

.cmd-text {
    display: inline;
}

.cmd-prefix {
    display: inline;
}

/* Cursor Blinking Effect */
@keyframes blink {
    0% {
        background-color: lightgray;
    }
    100% {
        background-color: transparent;
    }
}
/* Cursor Style */
.cursor {
    display: inline-block;
    width: 8px;
    height: 18px; /* Adjust to match text height */
    vertical-align: text-bottom;
    background-color: lightgray;
    margin-left: 2px;
    border-left: 1px solid lightgray;
    animation: blink 1s step-end infinite;
}


/* Remove default margin and padding */
* {
    margin: 0;
    padding: 0;
}
