.mlm-modern-dashboard { font-family: Arial, sans-serif; }
.mlm-modern-topnav { display: flex; background: #1e1e2f; padding: 10px; }
.mlm-modern-topnav a { color: #fff; margin-right: 10px; padding: 8px 12px; text-decoration: none; border-radius: 4px; }
.mlm-modern-topnav a.active { background: #3a3a5c; }
.mlm-modern-panels { margin-top: 20px; }
.mlm-modern-panel { display: none; background: #f8f9fa; padding: 20px; border-radius: 6px; }
.mlm-modern-panel.active { display: block; }
.mlm-modern-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.mlm-modern-table th, .mlm-modern-table td { border: 1px solid #ccc; padding: 8px; text-align: left; }
.mlm-modern-node { background: #e0e4ff; padding: 10px; margin: 5px; border-radius: 6px; text-align: center; cursor: pointer; }
.mlm-modern-node.empty { background: #f1f1f1; color: #999; }

.mlm-modern-tree-node {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.mlm-modern-tree-children {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.mlm-modern-tree-branch {
    margin: 0 10px;
    position: relative;
}

.mlm-modern-node {
    background: #f8f9fa;
    border: 2px solid #0073aa;
    border-radius: 8px;
    padding: 10px 15px;
    min-width: 150px;
    display: inline-block;
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.mlm-modern-node.empty {
    background: #e9ecef;
    border: 2px dashed #6c757d;
    cursor: pointer;
    color: #6c757d;
}

.mlm-modern-username {
    font-weight: 600;
    margin-bottom: 5px;
}

.mlm-modern-counts, .mlm-modern-joined {
    font-size: 12px;
    color: #555;
}

/* Connector lines */
.mlm-modern-tree-branch::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    width: 2px;
    height: 20px;
    background: #0073aa;
}

.mlm-modern-tree-children .mlm-modern-tree-branch::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #0073aa;
}

