/* Scrollbars */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(156, 163, 175, 0.5);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(107, 114, 128, 0.8);
}

/* Vis Network Customization */
.vis-network {
    outline: none;
}

/* Loader Animation */
.opacity-100 {
    opacity: 1;
    pointer-events: auto;
}

.opacity-0 {
    opacity: 0;
    pointer-events: none;
}

/* Interactive lists */
li.node-highlight {
    cursor: pointer;
    transition: color 0.2s;
}

li.node-highlight:hover {
    color: #c026d3;
    /* primary-600 */
}

:is(.dark) li.node-highlight:hover {
    color: #d946ef;
    /* primary-500 */
}