:import {
  -st-from: '../Foundation/stylable/colors.st.css';
  -st-named: B10, B30, B40, D10;
}

:import {
  -st-from: '../Foundation/stylable/typography.st.css';
  -st-named: text-small-normal;
}

.root {
  -st-mixin: text-small-normal;

  background-color: value(B40);
  box-shadow: inset 0 1px 0 0 value(B30), inset 0 -1px 0 0 value(B30);
  color: value(D10);
  display: flex;
  flex-direction: row;
  min-height: 42px;
}

.optionsContainer {
  display: grid;
  width: 100%;
  align-items: center;
}

.option {
  -st-states: position(enum(left, center, right)), sortable;

  display: flex;
  margin-left: 6px;
  align-items: center;
  gap: 6px;
  height: 24px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.option:not(:last-child) {
  margin-right: 18px;
}

.option:last-child {
  margin-right: 6px;
}

.option:position(left) {
  justify-self: start;
}

.option:position(center) {
  justify-self: center;
}

.option:position(right) {
  justify-self: end;
}

.option:sortable {
  cursor: pointer;
}

.sortArrow {
  color: value(B10);
}

/* st-namespace-reference="../../../../src/TableListHeader/TableListHeader.st.css" */