*
{
        
}

    #consoleBG /* (BODY) */
    {
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        margin: 0;
        height: 100vh;
        background: #0c0c0c;
        display: flex;
        justify-content: center;
        align-items: center;
        font-family: consolas;
        font-size: 14px;
    }

    .console 
    {
        box-sizing: border-box;
        width: 800px;
        height: 550px;
        border: 1px solid #444;
        background: #0c0c0c;
        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    #consoleLog /* (textarea) */
    {
        box-sizing: border-box;
        flex: 1;
        resize: none;
        border: none;
        outline: none;
        background: #0c0c0c;
        color: #ccc;
        font-family: inherit;
        font-size: inherit;
        padding: 5px;
    }

    .inputRow
    {
        box-sizing: border-box;
        display: flex;
        align-items: center;
        color: #ccc;
    }

    .inputPrefix {
        box-sizing: border-box;
        margin-right: 6px;
    }

    #input {
        box-sizing: border-box;
        flex: 1;
        border: none;
        outline: none;
        background: #0c0c0c;
        color: #ccc;
        font-family: inherit;
        font-size: inherit;
    }

    .consoleOn::-webkit-scrollbar
    {
        width: 5px;
    }

    .consoleOn::-webkit-scrollbar-track
    {
        background: transparent; 
    }
        
    .consoleOn::-webkit-scrollbar-thumb
    {
        background: #909090; 
    }

    .consoleOn::-webkit-scrollbar-thumb:hover
    {
        background: #9f9f9f; 
    }