.org-chart {
    display: flex;
    flex-direction: column; /* Aligns items vertically */
    align-items: center; /* Center items horizontally */
    padding: 2rem;
}

.org-member {
    display: inline-block; /* Allows the container to adjust to its content */
    text-align: center; /* Center the content inside */
    padding: 1rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 1rem 0; /* Space between members */
    max-width: 300px; /* Optional: Limit width of each member container */
}

.org-member img {
    width: 100%; /* Make the image take full width of the container */
    height: auto; /* Maintain the image's aspect ratio */
    border-radius: 10px; /* Optional: Rounded corners */
}


