/* Bootstrap 5.3 Tree Structure - Clean Lines */
.bs-tree {
    width: 100%;
    padding: 20px;
}

.bs-tree ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
}

.bs-tree ul ul {
    padding-left:10px;
    margin-top: 8px;
}

.bs-tree li {
    position: relative;
    padding: 8px 0 8px 30px;
    list-style: none;
    margin: 0;
}

.bs-tree li:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 20px;
    height: 0;
    border-top: 2px solid #dee2e6;
}

.bs-tree li:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    border-left: 2px solid #dee2e6;
}

.bs-tree li:last-child:after {
    height: 20px;
}

.bs-tree > ul > li {
    padding-left: 0;
}

.bs-tree > ul > li:before,
.bs-tree > ul > li:after {
    display: none;
}

.bs-tree .badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    display: inline-block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bs-tree ul ul {
        padding-left: 30px;
    }
    
    .bs-tree li {
        padding: 6px 0 6px 25px;
    }
    
    .bs-tree li:before {
        width: 15px;
        top: 16px;
    }
    
    .bs-tree li:last-child:after {
        height: 16px;
    }
    
    .bs-tree .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 576px) {
    .bs-tree ul ul {
        padding-left: 25px;
    }
    
    .bs-tree li {
        padding: 5px 0 5px 20px;
    }
    
    .bs-tree li:before {
        width: 12px;
        top: 14px;
    }
    
    .bs-tree li:last-child:after {
        height: 14px;
    }
    
    .bs-tree .badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.7rem;
    }
}


.profile-header {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	padding: 40px 0;
	margin-bottom: 30px;
	border-radius: 8px;
}
.profile-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	color: #667eea;
	margin: 0 auto 20px;
	border: 5px solid rgba(255,255,255,0.3);
}
.info-card {
	background: #f8f9fa;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 20px;
}
.info-item {
	display: flex;
	align-items: center;
	padding: 10px 0;
	border-bottom: 1px solid #dee2e6;
}
.info-item:last-child {
	border-bottom: none;
}
.info-icon {
	width: 40px;
	height: 40px;
	background: white;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	color: #667eea;
}
.info-content {
	flex: 1;
}
.info-label {
	font-size: 0.75rem;
	color: #6c757d;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 2px;
}
.info-value {
	font-size: 0.95rem;
	color: #212529;
	font-weight: 500;
}
.status-badge {
	font-size: 11px;
	padding: 4px 10px;
}
.agency-link-card {
	background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
	color: white;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 20px;
}