html, body {
  width: 100%;
  height: 100%;
  color: #d5d5d5;
  font-size: 14px;
}

#dom {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999;
}

.interface-panel {
  position: absolute;
  right: 0;
  top: 2px;
  width: 18vw;
  min-width: 300px;
  height: max-content;
  max-height: 75vh;
  overflow-y: auto;
  padding: 5px 5px 10px 5px;
  z-index: 999999;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, .7);
}

.interface-panel-title {
  font-size: 14px;
  color: #eeeeee;
}

.interface-panel .item {
  border-bottom: 1px solid #666666;
  padding: 5px 0;
}

.interface-panel .item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.interface-panel .item-title, .item-title:hover {
  color: #d5d5d5;
}

.interface-panel .item-title:hover {
  font-weight: bold;
}

.assembly-tree {
  background-color: rgba(0, 0, 0, .7);
  user-select: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 300px;
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  padding: 5px 5px 10px 5px;
  z-index: 999999;
  border-radius: 4px;
}

.assembly-tree .tree-item {
  display: flex;
  flex-direction: column;
}

.assembly-tree .item-header {
  display: flex;
  align-items: center;
  cursor: default;
  border-radius: 4px;
  padding: 4px;
}

.assembly-tree .item-header:hover {
  background-color: #555555;
}

.assembly-tree .item-header .ident {
  width: 10px;
  display: flex;
  align-items: center;
}

.assembly-tree .item-header .icon {
  margin-right: 4px;
}

.assembly-tree .item-header .title {
  flex-grow: 1;
}

.assembly-tree .item-children{
  display: none;
}

.assembly-tree .item-children.show {
  display: block;
}



