/* _content/FrontOffice.Main/Pages/Profile/Components/OrganizationChart.razor.rz.scp.css */
.org-chart-container[b-zp1itvxnp0] {
    width: 100%;
    height: 600px;
    overflow: auto;
    padding: 20px 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    position: relative;
}

.org-tree[b-zp1itvxnp0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    position: absolute;
}

.org-node[b-zp1itvxnp0] {
    position: relative;
}

.child-node[b-zp1itvxnp0] {
    display: inline-block;
    margin: 0 15px;
    vertical-align: top;
}

.grandchild-node[b-zp1itvxnp0] {
    display: inline-block;
    margin: 20px 10px 0;
    vertical-align: top;
}

.node-card[b-zp1itvxnp0] {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    min-width: 200px;
    max-width: 280px;
    transition: all 0.3s ease;
}

    .node-card:hover[b-zp1itvxnp0] {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        border-color: #e0e0e0;
    }

.node-avatar[b-zp1itvxnp0] {
    position: relative;
    text-align: center;
    margin-bottom: 12px;
}

.expand-btn[b-zp1itvxnp0] {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #0380C0;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

    .expand-btn:hover[b-zp1itvxnp0] {
        background: #026a9e;
        transform: translateX(-50%) scale(1.1);
    }

.node-info[b-zp1itvxnp0] {
    text-align: center;
}

.node-name[b-zp1itvxnp0] {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.node-amounts[b-zp1itvxnp0] {
    font-size: 12px;
}

    .node-amounts > div[b-zp1itvxnp0] {
        margin-bottom: 4px;
    }

.personal-amount[b-zp1itvxnp0] {
    color: #0380C0;
}

.team-amount[b-zp1itvxnp0] {
    color: #05AF82;
}

.label[b-zp1itvxnp0] {
    font-weight: 500;
    margin-left: 4px;
}

.amount[b-zp1itvxnp0] {
    font-weight: 600;
}

.node-connector[b-zp1itvxnp0] {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background: #ddd;
}

.org-level[b-zp1itvxnp0] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

    .org-level[b-zp1itvxnp0]::before {
        content: '';
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 20px;
        background: #ddd;
    }

    .org-level[b-zp1itvxnp0]::after {
        content: '';
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        height: 2px;
        background: #ddd;
        z-index: 1;
    }

.org-sublevel[b-zp1itvxnp0] {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    position: relative;
}

    .org-sublevel[b-zp1itvxnp0]::before {
        content: '';
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 20px;
        background: #ddd;
    }

    .org-sublevel[b-zp1itvxnp0]::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: #ddd;
        z-index: 1;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .org-chart-container[b-zp1itvxnp0] {
        padding: 10px 0;
    }

    .org-tree[b-zp1itvxnp0] {
        min-width: 100%;
    }

    .child-node[b-zp1itvxnp0] {
        margin: 0 8px;
    }

    .grandchild-node[b-zp1itvxnp0] {
        margin: 15px 5px 0;
    }

    .node-card[b-zp1itvxnp0] {
        min-width: 160px;
        max-width: 220px;
        padding: 12px;
    }

    .node-name[b-zp1itvxnp0] {
        font-size: 13px;
    }

    .node-amounts[b-zp1itvxnp0] {
        font-size: 11px;
    }
}

/* Animation for expand/collapse */
.org-level[b-zp1itvxnp0],
.org-sublevel[b-zp1itvxnp0] {
    animation: fadeIn-b-zp1itvxnp0 0.3s ease-in-out;
}

@keyframes fadeIn-b-zp1itvxnp0 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Connector lines styling */
.node-connector[b-zp1itvxnp0],
.org-level[b-zp1itvxnp0]::before,
.org-sublevel[b-zp1itvxnp0]::before {
    background: linear-gradient(to bottom, #ddd, #bbb);
}

/* Hover effects */
.node-card:hover .node-avatar .mud-avatar[b-zp1itvxnp0] {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

.expand-btn:active[b-zp1itvxnp0] {
    transform: translateX(-50%) scale(0.95);
}
/* _content/FrontOffice.Main/Pages/Profile/Components/OrganizationChartLevel.razor.rz.scp.css */
/* Organization Chart Level Styles */
.org-level[b-4l3cgak8cb] {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    position: relative;
    margin-top: 80px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

    .org-level[b-4l3cgak8cb]::before {
        content: '';
        position: absolute;
        top: -80px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 40px;
        background: #ddd;
    }

    .org-level[b-4l3cgak8cb]::after {
        content: '';
        position: absolute;
        top: -40px;
        left: 0;
        right: 0;
        height: 2px;
        background: #ddd;
        z-index: 1;
    }

/* Node styles for levels */
.org-node[b-4l3cgak8cb] {
    position: relative;
    margin: 0px 15px 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}

.node-connector[b-4l3cgak8cb] {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 40px;
    background: #ddd;
}

.node-card[b-4l3cgak8cb] {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid #f0f0f0;
    min-width: 200px;
    max-width: 280px;
    transition: all 0.3s ease;
}

    .node-card:hover[b-4l3cgak8cb] {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        border-color: #e0e0e0;
    }

.node-avatar[b-4l3cgak8cb] {
    position: relative;
    text-align: center;
    margin-bottom: 12px;
}

.expand-btn[b-4l3cgak8cb] {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #0380C0;
    color: white;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

    .expand-btn:hover[b-4l3cgak8cb] {
        background: #026a9e;
        transform: translateX(-50%) scale(1.1);
    }

.node-info[b-4l3cgak8cb] {
    text-align: center;
}

.node-name[b-4l3cgak8cb] {
    font-weight: 600;
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
}

.node-amounts[b-4l3cgak8cb] {
    font-size: 12px;
}

    .node-amounts > div[b-4l3cgak8cb] {
        margin-bottom: 4px;
    }

.personal-amount[b-4l3cgak8cb] {
    color: #0380C0;
}

.team-amount[b-4l3cgak8cb] {
    color: #05AF82;
}

.label[b-4l3cgak8cb] {
    font-weight: 500;
    margin-left: 4px;
}

.amount[b-4l3cgak8cb] {
    font-weight: 600;
}

/* Responsive adjustments for levels */
@media (max-width: 768px) {
    .org-level[b-4l3cgak8cb] {
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
    }

    .org-node[b-4l3cgak8cb] {
        margin: 10px 0;
    }

    .node-card[b-4l3cgak8cb] {
        min-width: 160px;
        max-width: 220px;
        padding: 12px;
    }

    .node-name[b-4l3cgak8cb] {
        font-size: 13px;
    }

    .node-amounts[b-4l3cgak8cb] {
        font-size: 11px;
    }
}

/* Animation for level expansion */
.org-level[b-4l3cgak8cb] {
    animation: fadeInLevel-b-4l3cgak8cb 0.3s ease-in-out;
}

@keyframes fadeInLevel-b-4l3cgak8cb {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* _content/FrontOffice.Main/Shared/MainLayout.razor.rz.scp.css */
body[b-78x1axvfmc]{

}
