.tabulator .tabulator-row .tabulator-cell,
.tabulator .tabulator-header .tabulator-col {
  border: none;
  padding: 7.5px;
  color: var(--text-tertiary);
}

.tabulator .tabulator-header {
  border-bottom: solid 1.5px var(--ui-secondary);
  background: none;
}

.tabulator .tabulator-tableholder .tabulator-table {
  background: none;
}

.tabulator .tabulator-header .tabulator-col {
  background: var(--bg-primary);
}

.tabulator {
  border: none;
  border-top: solid 1px var(--ui-secondary);
  border-bottom: solid 1px var(--ui-secondary);
  background-color: var(--bg-primary);
  border-radius: var(--border-radius);
}

.tabulator-row.tabulator-row-even,
.tabulator-row.tabulator-row-odd {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}

.tabulator-row {
  border-bottom: solid 1px var(--ui-primary);
}

.tabulator-row.tabulator-selectable:hover {
  background-color: var(--ui-primary);
}

.tabulator .tabulator-header .tabulator-col.tabulator-sortable.tabulator-col-sorter-element:hover {
  background-color: var(--ui-primary);
}

.tabulator-row.tabulator-selected {
  background-color: var(--ax-muted);
}

.tabulator-row.tabulator-selected:hover {
  background-color: var(--ax-tertiary);
}

.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;
}

.table-container .tabulator-row.tabulator-group .asking {
  color: black;
  background-color: var(--ui-secondary);
  padding: 5px;
  border-radius: var(--border-radius);
  text-transform: uppercase;
  font-size: 12px;
}

.tabulator-row.tabulator-group {
  border-bottom: solid 1px var(--ui-secondary);
  border-right: none;
  border-top: none;
}

.details-container {
  display: none;
}

.details-container.visible {
  display: block;
  background-color: var(--bg-primary);
}