.tree-root {
    overflow-x: auto;
    white-space: nowrap; /* Agar elemen tidak terpotong */
}

.tree-root > .tree {
    display: table; /* Menggunakan display table */
    margin: 0 auto; /* Pusatkan konten */
    white-space: nowrap; /* Hindari pemotongan */
}

.tree ul {
    display: table; /* Susun elemen dengan table */
    margin: 0 auto;
    padding-top: 20px;
    position: relative;
    padding-left: 0; 
    transition: all 0.5s;
}

.tree li {
    display: table-cell; /* Ubah menjadi table-cell untuk tata letak horizontal */
    text-align: center;
    list-style-type: none;
    position: relative;
    padding: 20px 5px 0 5px;
    transition: all 0.5s;
    vertical-align: top;
}

.tree li .card {
  margin: 0;
}

/* Konektor */
.tree li::before, .tree li::after {
    content: '';
    position: absolute; 
    top: 0; 
    right: 50%;
    border-top: 1px solid #ccc;
    width: 50%; 
    height: 20px;
}

.tree li::after {
    right: auto; 
    left: 50%;
    border-left: 1px solid #ccc;
}

/* Hilangkan konektor jika hanya satu elemen */
.tree li:only-child::after, .tree li:only-child::before {
    display: none;
}

/* Penyesuaian elemen pertama dan terakhir */
.tree li:first-child::before, .tree li:last-child::after {
    border: 0 none;
}

.tree li:last-child::before {
    border-right: 1px solid #ccc;
    border-radius: 0 5px 0 0;
}

.tree li:first-child::after {
    border-radius: 5px 0 0 0;
}

/* Tambahkan konektor vertikal untuk anak */
.tree ul ul::before {
    content: '';
    position: absolute; 
    top: 0; 
    left: 50%;
    border-left: 1px solid #ccc;
    width: 0; 
    height: 20px;
}

.tree li a {
    display: inline-block;
    text-decoration: none;
    color: #666;
    font-size: 11px;
    /* padding: 5px; */
    /* border: 1px solid #ccc; */
    border-radius: 5px;
    transition: all 0.5s;
}

/* Efek hover */
.tree li a:hover {
    background: #c8e4f8;
    color: #000;
    border: 1px solid #94a0b4;
}

/* Konektor berubah warna saat hover */
.tree li a:hover+ul li::after, 
.tree li a:hover+ul li::before, 
.tree li a:hover+ul::before, 
.tree li a:hover+ul ul::before {
    border-color: #94a0b4;
}
