.tree-select-container {
  margin: 20px 0;
}

.tree-root {
  padding: 15px;
}

.tree-node {
  margin-left: 20px;
  position: relative;
}

.root-node {
  margin-left: 0;
}

.tree-node-content {
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.node-label {
  font-weight: 500;
  margin-right: 8px;
}

.node-type, .node-description {
  color: #666;
  font-size: 0.9em;
  font-style: italic;
}

.tree-children {
  position: relative;
}

.tree-children:before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
  bottom: 0;
}

.tree-node:before {
  content: "";
  position: absolute;
  left: -15px;
  top: 15px;
  width: 15px;
}

.expand-link {
  display: inline-block;
  width: 24px;
  height: 24px;
  text-decoration: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 15.7L6 9.69999L7.4 8.29999L12 12.9L16.6 8.29999L18 9.69999L12 15.7Z' fill='%2321272E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.expand-link.expanded {
  transform: rotate(0);
}

.expand-link.collapsed {
  transform: rotate(-90deg);
}

/*# sourceMappingURL=style.css.map */
