#branch-display {
  overflow: hidden;
  /* flex-grow: 1; */
  position: absolute;
  inset: 0;
}

#tree-container-wrapper {
  width: 100vw;
  height: 100%;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

#tree-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: max-content;
  height: max-content;
  /* padding: 20px; */
  padding: 120px 200px 120px;
}

.tree-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  /* margin: -20px; */
  box-sizing: border-box;
}

.tree-node-body {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  border-radius: 8px;
  gap: 4px;
  padding: 8px 16px 8px;
}

.tree-node .avatar {
  width: 150px;
  height: 150px;
  background-size: cover;
  background-position: center;
}

.tree-node-text {
  font-size: 1rem;
}

.tree-children {
  display: flex;
  justify-content: center;
  position: relative;
  width: max-content;
}

.svg-line {
  position: absolute;
  overflow: visible;
}

.glow {
  box-shadow: 0 0 10px 5px rgba(255, 0, 0, 0.8);
}
