.table-row
{   
    display:inline-flex;
    min-width:100%;
    position:relative;
}

.table-row:not(.table-header)
{
    background: var(--light-grey);
    margin-bottom: 2px;    
}

.table-row.sub
{
    background:#f9f9f9;
}

.table-user-item.alrt
{
    color:white;
    background:orange;
}

.table-user-item.power
{
    color:white;
    background:#4ecf4e;
}

.table-user-item 
{
    width:Calc( 100% / 9 );
    text-align:center;
    justify-content: center;
}

.table-index
{
    position:sticky;
    left:0px;
    background: white;
    z-index: 99;
    border-right: 1px solid rgba(0,0,0,0.05);
}

.table-column .table-user-item
{
    padding:5px 10px;
}

.table-header.sub-header .table-user-item 
{
    padding:0px;
    font-size:0.7em;
}

.table-container
{
    overflow-x:auto;
}

.table-container::-webkit-scrollbar
{
    height:3px;
}

.table-mini-button
{
    border-radius: 5px;
    padding: 0px 10px 3px 10px;
    font-size: 9px;
    transition:300ms ease all;
    background-color: #e9e9e9;
    cursor:pointer;
}

.table-header .table-column.sortable
{
    cursor:pointer;
     -webkit-user-select: none;
}

.table-column span
{
    font-size:11px;
    font-weight:bold;
}

.table-column.flex-column
{
    justify-content: center;
}


.table-row.sub .table-column
{
    padding:10px 20px;
}

.table-column
{
    padding:20px;
   flex-shrink:0;
    align-self:normal;
   
}

.table-sub-entries
{
    border-left: 1px solid var(--light-grey);
    margin-left: 40px;
    padding-left: 40px;
}

.table-row.sub::after
{
    content:'';
    height:1px;
    background:var(--light-grey);
    position:absolute;
    top:50%;
    width:40px;
    left:-40px;
    transform:translateY( -50% );
}