/* Tree Structure */
.org-tree ul {
    padding-top: 20px;
    position: relative;
    display: flex;
    justify-content: center;
	padding-left: 0;
}

.org-tree li {
    list-style: none;
    text-align: center;
    position: relative;
    padding: 20px 10px 0 10px;
}

/* Horizontal Line */
.org-tree li::before,
.org-tree li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    border-top: 2px solid #ccc;
    width: 50%;
    height: 20px;
}

.org-tree li::after {
    right: auto;
    left: 50%;
    border-left: 2px solid #ccc;
}

/* Remove unnecessary lines */
.org-tree li:only-child::before,
.org-tree li:only-child::after {
    display: none;
}

.org-tree li:only-child {
    padding-top: 0;
}

/* First & Last child fixes */
.org-tree li:first-child::before {
    border: none;
}

.org-tree li:last-child::after {
    border: none;
}

/* Vertical Line */
.org-tree ul ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 2px solid #ccc;
    width: 0;
    height: 20px;
}

/* Cards */
.card {
    display: inline-block;
    padding: 15px;
    border-radius: 10px;
    background: white;
    border: 1px solid #ddd;
    min-width: 160px;
    transition: 0.3s;
}
.chart-heading-b
{
	font-size: 18px;
    font-family: Arial;
	font-weight:bold;
	color:#fff !important;
}
.chart-heading2-b
{
	font-size: 14px;
    font-family: Arial;
	font-weight:bold;
	color:#fff !important;
}
.chart-heading
{
	font-size: 18px;
    font-family: Arial;
	font-weight:bold;
	color:#000 !important;
}
.chart-heading2
{
	font-size: 14px;
    font-family: Arial;
	font-weight:bold;
	color:#000 !important;
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Special Colors */
.md {
    background: #1E3A8A;
    color: white;
}

.admin {
    border-top: 4px solid #4975C5;
}

.legal {
    border-top: 4px solid #4975C5;
}

.small {
    min-width: 120px;
    font-size: 13px;
}

/*span {
    display: block;
    font-size: 12px;
   color: #666;
}

.md span {
    color: #ddd;
}*/