div.orgChart {
  margin: 20px auto;
  padding: 20px;
  background-color: #f9f9f9; /* Warna latar belakang yang lembut */
  border-radius: 10px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
}

div.orgChart h2, div.orgChart .sub_indicator {
  margin: 10px 0;
  font-size: 16px;
  font-weight: bold;
  min-height: 20px;
  color: #333;
}

div.orgChart h2:hover, div.orgChart .sub_indicator:hover {
  background: #fcfaca;
  cursor: text;
  border-radius: 4px;
  padding: 2px;
}

div.orgChart ul {
  list-style: none;
  margin: 10px 0;
  padding: 0px;
  font-size: 0.9em;
  text-align: left;
}

div.orgChart ul.stack,
div.orgChart ul.stack ul {
  text-align: center;
}

div.orgChart table {
  width: 100%;
}

div.orgChart tr.lines td.line {
  width: 1px;
  height: 20px;
}

div.orgChart tr.lines td.top {
  border-top: 1px dashed #ccc;
}

div.orgChart tr.lines td.left {
  border-right: 1px dashed #ccc;
}

div.orgChart tr.lines td.right {
  border-left: 1px dashed #ccc;
}

div.orgChart tr.lines td.half {
  width: 50%;
}

div.orgChart td {
  text-align: center;
  vertical-align: top;
  padding: 10px 5px; /* Tambahkan padding antar elemen */
}

div.orgChart div.node {
  cursor: default;
  border: 1px solid #e7e7e7;
  display: inline-block;
  padding: 15px; /* Padding lebih besar untuk jarak dalam node */
  margin: 10px; /* Tambahkan margin antar node */
  width: 220px; /* Lebar node */
  height: auto;
  background: #ffffff; /* Old browsers */
  background: -moz-linear-gradient(top, #ffffff 0%, #fbfbfb 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #fbfbfb)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #ffffff 0%, #fbfbfb 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #ffffff 0%, #fbfbfb 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #ffffff 0%, #fbfbfb 100%); /* IE10+ */
  background: linear-gradient(to bottom, #ffffff 0%, #fbfbfb 100%); /* W3C */
  line-height: 1.5em;
  border-radius: 8px; /* Border radius lebih besar */
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  position: relative;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1); /* Shadow untuk memberikan efek depth */
}

.org-add-button,
.org-save-button,
.org-del-button,
.org-confirm-del-button {
  /* position: absolute; */
  font-size: 12px;
}

.org-add-button {
  bottom: 5px;
  left: 10px;
  padding-left: 13px;
  background: url(./add.png) no-repeat 0 3px;
}

.org-save-button {
  bottom: 5px;
  left: 110px;
  padding-left: 13px;
  background: url(./save.png) no-repeat 0 3px;
}

.org-add-button:hover,
.org-save-button:hover,
.org-del-button:hover {
  background-color: #eef;
  border-radius: 4px;
  cursor: pointer;
}

.org-del-button {
  background: url(./delete.png) no-repeat;
  /* width: 12px;
  height: 12px; */
  left: 10px;
  top:3px;
  bottom: 7px;
  /* right: 10px; */
  padding-left: 13px;
}

.org-input {
  width: 200px;
  margin: 5px 0; /* Tambahkan margin antar input */
}

.org-confirm-del-button {
  display: none;
}
