.material-categories-table {
  display: grid;
  gap: calc(var(--block-space) * 0.5);
  list-style: none;
  padding: 0;
  margin: 0;
}

.material-categories-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--inline-space);

  border-bottom: 1px solid var(--color-border);
  cursor: grab;

  &:nth-child(even) {
    background-color: var(--table-row-bg-odd, rgba(0, 0, 0, 0.04));
  }
}
ul{
  list-style: none;
}
.material-categories-cell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: break-spaces;
}

.material-categories-actions {
  display: flex;
  justify-content: flex-end;
  gap: calc(var(--block-space) * 0.5);
  flex-wrap: nowrap;
}
