:root {
    --table-data-txt: #777;
    --header-bg: var(--main-color);
    --header-txt: #FFF;
    --row-odd: #FFF;
    --row-even: #F1F1F1;
    --row-hover: #DEDEDE;
    --cell-hover: #D1D1D1;
    --cell-highlight: #F8CED5;
    --cell-highlight-hover: #F9B5C0;
}
.tabulator .tabulator-header .tabulator-col {
    background: var(--header-bg);
    color: var(--header-txt);
    text-align: center;
}
.tabulator .tabulator-header .tabulator-col .tabulator-col-content {
    padding-top: 8px;
    padding-bottom: 8px;
}
.tabulator-row {
    color: var(--table-data-txt);
}
.tabulator-row.tabulator-selectable:hover {
    cursor: auto;
    background-color: var(--row-hover);
}
.tabulator-row.tabulator-row-odd {
    background-color: var(--row-odd);
}
.tabulator-row.tabulator-row-even {
    background-color: var(--row-even);
}
.tabulator-row .tabulator-cell{
    padding: 8px;
}

.tabulator-cell a {
    position: relative;
    display: block;
    color: #007bff !important;
    text-decoration: underline !important;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tabulator-row.highlight-row .tabulator-cell, 
.tabulator-cell.highlight-cell {
    background-color: var(--cell-highlight)!important;
}
.tabulator-row.highlight-row:hover .tabulator-cell,
.tabulator-cell.highlight-cell:hover {
    background-color: var(--cell-highlight-hover)!important;
}
.tabulator-cell.link-cell{
    padding-right: 22px;
    cursor: pointer;
}
.tabulator-cell.link-cell:hover{
    background-color: var(--cell-hover);
}
/* .tabulator-cell.link-cell::after {
    content: '';
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../../img/arrow_right_triangle.svg);
} */

.tabulator .tabulator-header .tabulator-col.tabulator-col-group.no-multi-header .tabulator-col-group-cols {
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    border-top: 0 !important;
}
.tabulator-row.tabulator-selected {
    background-color: #FFFFE8;
}
.tabulator-row.tabulator-selected:hover {
    background-color: #FFFFE8;
    cursor: pointer;
}