.team-hierarchy {
    position: relative;
    text-align: center;
}

.team-level {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    margin-top: 20px;
}

.member {
    margin: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9f9f9;
    width: 150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.member-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.member-name {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Garis horizontal di atas setiap member 
.member::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    width: 100%;
    height: 2px;
    background-color: #ddd;
    transform: translateX(-50%);
    z-index: -1;
}*/

/* Garis vertikal antara level 
.team-level::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 20px;
    background-color: #ddd;
    transform: translateX(-50%);
    z-index: -1;
}*/

/* Garis vertikal antara anggota dan sub-anggota 
.member > a::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    width: 2px;
    height: 20px;
    background-color: #ddd;
    transform: translateX(-50%);
    z-index: -1;
}*/

.btn-secondary {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: #6c757d;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #5a6268;
}
