body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f9;
}

.org-chart {
    display: flex;
    justify-content: center;
    align-items: center;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    position: relative;
    margin: 20px 0;
    text-align: center;
}

.position {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.employee {
    background-color: #2196F3;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    margin-top: 5px;
    display: inline-block;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

ul > li > ul {
    margin-top: 20px;
    padding-left: 20px;
}

li > ul {
    display: flex;
    justify-content: space-evenly;
}

li > ul > li {
    display: inline-block;
    width: 20%;
}

li > ul > li > .position {
    margin-bottom: 10px;
}

.position, .employee {
    text-align: center;
}

img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 5px;
}

.details {
    font-size: 14px;
    color: #333;
}

.leader {
    font-weight: bold;
}

.deputy {
    font-style: italic;
}
