.tabulator {
    background: #ffffff;
    color: #494e52;
    border: 1px solid #e8e8e8;
    font-family: inherit;
}

/* Header */
.tabulator .tabulator-header {
    background: #f2f3f3;
    border-bottom: 1px solid #e8e8e8;
}

.tabulator .tabulator-col {
    background: #f2f3f3;
    color: #3d4144;
    border-right: 1px solid #e8e8e8;
}

/* Sort arrows */
.tabulator .tabulator-col-sorter {
    color: #7a8288;
}

/* Rows */
.tabulator-row {
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.tabulator-row:nth-child(even) {
    background: #fafafa;
}

.tabulator-row:hover {
    background: #f3f6f6;
}

/* Selected row */
.tabulator-row.tabulator-selected {
    background: #d9edf7;
}

/* Links inside cells */
.tabulator-cell a {
    color: #52adc8;
}

.tabulator-cell a:hover {
    color: #2a7fa0;
}

/* Footer / pagination */
.tabulator-footer {
    background: #f2f3f3;
    border-top: 1px solid #e8e8e8;
}