/* Table header */
c-thead {
  display: table-header-group;
  background-color: var(--color-thead-bg);
}

/* thead clickable */
.thead-clickable-cell c-th:hover {
  background-color: var(--color-table-hover);
  cursor: pointer;
}

.thead-clickable-cell c-th:active {
  background-color: var(--color-table-active);
  cursor: pointer;
}

.thead-clickable-horizontal c-tr:hover {
  background-color: var(--color-table-hover);
  cursor: pointer;
}

.thead-clickable-horizontal c-tr:active {
  background-color: var(--color-table-active);
  cursor: pointer;
}