:root {
  --org-line: #3d6696;
  --org-bg: #4f81bd;
  --org-text: #ffffff;
  --org-border: #3d6696;
}

#tree {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  margin: 0 auto;
  box-sizing: border-box;
}

.orgchart-wrap {
  padding: 16px;
  display: flex;
  justify-content: center;
  height: 1290px;
}

.node {
  box-sizing: border-box;
  width: 220px;
  height: 54px;
  padding: 0;
  border-radius: 0;
  background: var(--org-bg);
  border: 4px solid var(--org-border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: default;
}

.node-name {
  font-weight: 700;
  color: var(--org-text);
  padding: 12px 16px;
  font-size: 18px;
  line-height: 1.4;
  white-space: pre-line;
}

.hidden-node {
  width: 220px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.node-line {
  width: 100%;
  border-top: 2px solid var(--org-line);
}

#tree svg {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.node-button-g {
  display: none;
}
