.network-visualization-container {
    width: 100%;
    max-width: 1400px;
    margin: 20px auto;
    padding: 0;
    background: white;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(47, 113, 184, 0.1);
    border: 1px solid rgba(47, 113, 184, 0.1);
}

.network-visualization-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2f71b8, #4CAF50);
}

/* Inner container voor de padding */
#network-viz {
    width: 100%;
    height: 300px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.network-visualization-container .section-title {
    color: #2f71b8;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    padding: 0 40px 15px;
    border-bottom: 2px solid #e6eef7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.network-visualization-container .section-title i {
    color: #4CAF50;
    font-size: 28px;
}

#network-viz svg {
    width: 1350px;
    max-width: 100%;
    height: auto;
}

.network-node {
    pointer-events: none;
}

.network-link {
    stroke: #2f71b8;
    stroke-width: 1;
}

.network-node-avatar {
    clip-path: circle(50%);
}
