
div.orgChart h2 {
    margin                : 0px;
    font-size             : 1em;
    border-bottom         : none;
}

div.orgChart ul {
    list-style            : none;
    margin                : 4px;
    padding               : 0px;
    font-size             : 0.8em;
    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            : 3px solid black;
}

div.orgChart tr.lines td.left {
    border-right          : 2px solid black;
}

div.orgChart tr.lines td.right {
    border-left           : 2px solid black;
}

div.orgChart td {
    text-align            : center;
    vertical-align        : top;
    padding               : 0px 2px;
}

div.orgChart div.node {
    cursor                : default;
    border                : 2px solid black;
    display               : inline-block;
    padding               : 0 4px;
    width                 : 160px;
    height                : 180px;
    line-height           : 1.3em;
    border-radius         : 8px;
    box-shadow            : 4px 4px 6px #888888;
    -moz-border-radius    : 8px;
    -moz-box-shadow       : 4px 4px 6px #888888;
    -webkit-border-radius : 8px;
    -webkit-box-shadow    : 4px 4px 6px #888888;
}

.node-img {
	width: 90px;
	height: 90px;
	padding-top: 10px; /* Add padding to the top */
	padding-bottom: 5px; /* Add padding to the bottom */
}


div.orgChart div.hasChildren {
    background-color      : #90EE90;
}

div.orgChart.interactive div.hasChildren {
    cursor                : pointer;
}

div.orgChart div.node.hover {
    background-color      : white;
}

div.orgChart div.adjunct.node {
    position              : absolute;
    margin-top            : 8px;
    margin-left           : -110px;
    width                 : 80px;
    height                : 40px;
    background-color      : #efefef;
}

div.orgChart div.adjunct-link {
    display               : inline-block;
    position              : absolute;
    margin-left           : -20px;
    margin-top            : 25px;
    width                 : 20px;
    border                : 1px dashed black;
}
    #content {
	overflow: hidden; /* Ensure no horizontal overflow */
    }
    #main {
	height: 600px; /* Set a fixed height for the chart area */
	overflow-y: auto; /* Enable vertical scroll if content exceeds height */
	border: 1px solid #ccc; /* Optional: Add a border for clarity */
	padding: 10px; /* Optional: Add padding to the chart area */
    }
    .node {
	text-align: center;
	margin: 10px;
    }
    .node img {
	max-width: 100px;
	border-radius: 10%;
	padding-top: 10px; /* Add padding from top */
    }
    .node-content {
	display: flex;
	flex-direction: column;
	align-items: center;
    }
    .node-text {
	font-size: 12px; /* Adjust the font size as needed */
	margin-top: 5px; /* Add space above the text */
    }
	
	/* Style for No Image box */
	.no-image-box {
    width: 100px;
    height: 100px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    text-align: center;
    line-height: 100px; /* Center content vertically */
	padding-top: 10px; /* Add padding from top */
	}