﻿div.filterMenu {
    position: absolute;
    top: 0;
    left: 0;
}

div.filterCell {
    position: relative;
    
}



table.table-grid {
    /*border-left: 1px solid #aaa;*/
}

th.header-grid {
    background-color: var(--buttonBlu);
    border-bottom: 1px solid #aaa;
    padding: 8px 5px;
    color: white;
}

tr.grid-row {
    border-right: 1px solid #aaa;
}
    tr.grid-row:nth-child(even) {
        background-color: #efefef;
    }

td.grid-cell {
    border-right: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    text-wrap: none;
    padding: 8px 5px;
}

td.grid-cell.last {
    border-right: 1px solid #aaa;
}


.separator {
    border-bottom: 2px solid #555 !important;
}
    .separator.first {
        border-left: 1px solid #aaa;
    }

div.sub-row {
    padding: 10px;
}
div.sub-row:nth-child(even) {
    background: lightblue;
}


button.btnTab {
    border-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border: 1px solid #888;
    border-bottom: 0;
    min-height: 50px;
    color: var(--buttonBlu);
    border-collapse: collapse;
    background-color: white;
    margin-right: 5px;
}
    button.btnTab:hover {
        background-color: var(--buttonBlu);
        color: white;
        border-bottom: 0;
    }

    button.btnTab.active {
        border-bottom: 0;
        color: white;
        background-color: var(--buttonBlu);
    }

        button.btnTab.active:hover {
            /*background-color: var(--blue);*/
            color: white;
            border-bottom: 0;
        }