#myconsole_bar {
    width: 80px;
    height: 20px;
    background-color: rebeccapurple;
    color: white;
    text-align: center;
    User-select: none;
    line-height: 20px;
    position: fixed;
    bottom: 0;
    /*left: 0;*/
    z-index: 100;
    left: -79px;
}

#myconsole {
    margin-top: 80px;
    display: none;
    overflow-y: auto;
    background-color: white;
    position: absolute;
    width: 100%;
    top: 0;
    height: calc(100vh - 100px);
    z-index: 100;
}

    #myconsole #removeAllLog {
        width: 100px;
        height: 20px;
        background-color: red;
        color: white;
        text-align: center;
        User-select: none;
        line-height: 20px;
    }

#myconsole_bar:hover {
    background-color: red;
}

#myconsole .card {
    border: 1px solid #d9d9d9;
    margin-bottom: 5px;
}

    #myconsole .card .time {
        position: absolute;
        right: 60px;
        line-height: 30px;
        font-size: 18px;
    }

    #myconsole .card .remove {
        line-height: 20px;
        position: absolute;
        right: 15px;
        background: red;
        color: white;
        font-size: 12px;
        width: 40px;
        text-align: center;
        height: 20px;
        margin-top: 5px;
        cursor: pointer;
    }

        #myconsole .card .remove:hover {
            background: rgb(231, 203, 203);
        }

    #myconsole .card .title {
        height: 30px;
        line-height: 30px;
        font-size: 20px;
        font-weight: bold;
        padding-left: 10px;
        background-color: #fafafa;
        border-bottom: 1px solid #d9d9d9;
        cursor: pointer;
    }

    #myconsole .card .context {
        padding: 10px;
        background-color: white;
        display: none;
    }
