/* Reset margins and force a pure black background */
body, html {
    margin: 0;
    padding: 0;
    background-color: #000000;
    color: #00ff00; /* Classic matrix green text, change to #ffffff for pure white */
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
    height: 100%;
    overflow: hidden;
}

/* The terminal container */
#terminal {
    padding: 20px;
    height: calc(100% - 40px);
    overflow-y: auto;
    box-sizing: border-box;
}

/* Style for the command input line */
.input-line {
    display: flex;
    align-items: center;
}

/* The prompt styling (user@linux:~$) */
.prompt {
    color: #00ff00; 
    font-weight: bold;
    margin-right: 10px;
    white-space: nowrap;
}

/* The invisible input field that captures typing */
#cmd-input {
    background: transparent;
    border: none;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    flex-grow: 1;
    padding: 0;
    margin: 0;
}