#console {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    color: lime;
    font-family: 'Courier New', Courier, monospace;
    padding: 50px;
    box-sizing: border-box;
    z-index: 1000;
}

#console-input {
    width: 100%;
    background: transparent;
    border: none;
    color: lime;
    font-family: 'Courier New', Courier, monospace;
    outline: none; /* Removes the outline to make it look cleaner */
    caret-color: lime; /* Ensures the caret (blinking cursor) is visible and styled */
}


#console-output {
    max-height: 300px;
    overflow-y: auto;
    font-size: 0.9em;
}
