:host {
  display: flex;
  flex-direction: column;
}

.item {
  cursor: pointer;

  display: flex;
  flex-flow: row nowrap;
  gap: 5px;
  align-items: center;
  justify-content: flex-start;

  padding: 6px;

  .checkbox {
    margin: 0;
  }
}

.children {
  display: flex;
  flex-direction: column;

  .child-node {
    padding-left: 10px;
  }
}

.selected {
  background-color: var(--color-gray-eee);
}

.expand-icon {
  cursor: pointer;
  display: flex;
  color: var(--color-gray-444);

  &.hidden {
    pointer-events: none;
    cursor: unset;
    opacity: 0;
  }
}
