/* SVG Network Properties */                                                                       
.hover {
    border: 1px solid black;
}

.link {
    stroke-opacity: .8;
}
.link-hover {
    cursor: pointer;
}
.link-highlight {
    stroke-dasharray: 10, 5;
}
.link-gs {
    stroke: #FFAB48;
}

/* Network node properties */
.node {
    stroke-width: 2px;
    stroke: white;
    fill: #444;
}
.node-name {
    font-size: 12px;
    font-weight: bold;
}
.node-name-highlight {
    font-size: 13px;
    font-weight: bold;
}
.node-query {
    fill: black;
    stroke-width: 1.5px;
    stroke: white;
}
.node-gs {
    fill: rgb(255,239,175);
    stroke-width: 1.5px;
    stroke: #888;
}
.node-shared {
    stroke: cornflowerblue;
    stroke-width: 2.5px;
}
.node-hover {
    stroke: red;
}
.node-highlight {
    fill: black;
    stroke: red;
}
.node-pinned {
    stroke: red;
}
text {
    fill: #000;
}

