.tabulator .tabulator-row .tabulator-cell,
.tabulator .tabulator-header .tabulator-col {
  border: none;
  padding: 7.5px;
  color: rgba(var(--foreground), 0.8);
}

.tabulator .tabulator-header {
  border-bottom: solid 1.5px var(--neutral-100);
  background: none;
}

.tabulator .tabulator-tableholder .tabulator-table {
  background: none;
}

.tabulator .tabulator-header .tabulator-col {
  background: white;
}

.tabulator {
  border: none;
  border-top: solid 1px var(--neutral-100);
  border-bottom: solid 1px var(--neutral-100);
  background-color: white;
  border-radius: var(--border-radius);
}

.tabulator-row.tabulator-row-even,
.tabulator-row.tabulator-row-odd {
  background-color: white;
  color: rgb(var(--foreground));
}

.tabulator-row {
  border-bottom: solid 1px var(--neutral-50);
}

.tabulator-row.tabulator-selectable:hover {
  background-color: var(--neutral-50);
}

.tabulator .tabulator-header .tabulator-col.tabulator-sortable.tabulator-col-sorter-element:hover {
  background-color: var(--neutral-50);
}

.tabulator-row.tabulator-selected {
  background-color: var(--accent-lightest);
}

.tabulator-row.tabulator-selected:hover {
  background-color: var(--accent-light);
}

.tabulator .tabulator-header .tabulator-col.checkboxCol .tabulator-col-content input[type="checkbox"] {
  margin-left: 0px;
}

.table-container {
  overflow-x: auto;
  flex: 1;
  height: 100%;
}

.table-container .tabulator-row.tabulator-group {
  font-weight: 300;
  display: flex;
  align-items: center;
}

.table-container .tabulator-row.tabulator-group .group-header {
  flex: 1;
  color: black;
}

.table-container .tabulator-row.tabulator-group b,
.table-container .tabulator-row.tabulator-group a {
  display: inline-block;
  margin: 0;
  font-weight: 500;
  color: inherit;
}

.tabulator-row.tabulator-group {
  border-bottom: solid 1px var(--neutral-100);
  border-right: none;
  border-top: none;
}

.details-container {
  display: none;
}

.details-container.visible {
  display: block;
  background-color: white;
}

.generic-grid {
  border-right: solid 1px var(--neutral-100);
  border-left: solid 1px var(--neutral-100);
  border-radius: var(--border-radius);
  display: block;
  width: 100%;
  flex:1;
}

.tabulator-col .tabulator-col-content {
  padding-left: 0 !important;
}

.tabulator .tabulator-header .tabulator-col.tabulator-sortable .tabulator-col-title {
  padding-right: 15px;
}

.tabulator .tabulator-header .tabulator-col .tabulator-col-content .tabulator-col-sorter .tabulator-arrow {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
}

.tabulator-col-title {
  font-size: 12px;
  font-weight: 500;
}

.tabulator-cell {
  font-size: 12px;
}