.netviz-wrapper-e884fa7f {
    background-color: #0f172a;
    color: #f8fafc;
    font-family: 'Ubuntu', system-ui, -apple-system, sans-serif;
    padding: 3rem 1.5rem;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}
.netviz-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}
.netviz-pill {
    background: rgba(0, 119, 182, 0.15);
    color: #0077B6; /* Primary standard color */
    border: 1px solid rgba(0, 119, 182, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.85rem;
    font-weight: 500;
}
.netviz-header h2 {
    font-family: 'Kreon', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 1rem 0 0.5rem;
    color: #fff;
}
.netviz-header p {
    color: #94a3b8;
    font-size: 0.95rem;
}
.netviz-canvas-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: radial-gradient(circle at center, #134F7D 0%, #0f172a 100%); /* Radial secondary color standard */
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
}
#netviz-canvas-e884fa7f {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.netviz-nodes-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
}
.netviz-node {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 100;
}
.netviz-node:hover,
.netviz-node:focus-within,
.netviz-node.active-node {
    z-index: 9999999 !important;
}
.netviz-node-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(15, 23, 42, 0.82);
    border: 2px solid #0077B6; /* Primary standard color */
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 119, 182, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}
.netviz-node-label {
    position: absolute;
    top: 110%;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 500;
    color: #cbd5e1;
}
.netviz-status-ping {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.netviz-status-ping.success { background: #10b981; box-shadow: 0 0 8px #10b981; }
.netviz-status-ping.warning { background: #f59e0b; box-shadow: 0 0 8px #f59e0b; }

.netviz-node-card {
    position: absolute;
    top: 130%;
    left: 50%;
    transform: translateX(-50%) scale(0.85);
    opacity: 0;
    pointer-events: none;
    width: 260px;
    background: rgba(15, 23, 42, 0.98) !important;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 119, 182, 0.4) !important; /* Accent with Primary standard color */
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    z-index: 1000000 !important;
}
.netviz-node:hover .netviz-node-card,
.netviz-node:focus-within .netviz-node-card,
.netviz-node.active-node .netviz-node-card {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}
.netviz-node:hover .netviz-node-circle,
.netviz-node:focus-within .netviz-node-circle,
.netviz-node.active-node .netviz-node-circle {
    transform: scale(1.1);
    border-color: #0077B6; /* Primary standard color */
    box-shadow: 0 0 20px rgba(0, 119, 182, 0.7);
}
.netviz-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}
.netviz-card-header h4 {
    font-family: 'Kreon', Georgia, serif;
    margin: 0;
    font-size: 0.95rem;
    color: #fff;
}
.netviz-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}
.netviz-badge.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}
.netviz-card-desc {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0 0 0.75rem;
    line-height: 1.4;
}
.netviz-card-footer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
}
.netviz-card-metric {
    color: #0077B6; /* Primary standard color */
    font-weight: 500;
}
.netviz-interactive-indicator {
    color: #64748b;
}
.netviz-ticker {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.ticker-item {
    font-size: 0.85rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 6px;
}
.ticker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.ticker-dot.green { background: #10b981; }
.ticker-dot.blue { background: #0077B6; /* Primary standard color */ }

@media (max-width: 768px) {
    .netviz-canvas-container {
        height: 500px;
    }
    .netviz-node-card {
        width: 220px;
    }
}