/* Network graph */
#network-container {
    width: 100%;
    height: 100%;
    border: 2px solid black;
    background-color: white;
    position: relative;
}

#network-tooltip {
    position: absolute;
    background-color: #fff;
    max-width: 250px;
    max-height: 400px;
    word-wrap: break-word;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    pointer-events: none;
    z-index: 1000;
    display: none;
    line-height: normal;
    pointer-events: auto;
    overflow-y: auto;
}


#network-tooltip p {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 15px;
}

#network-controls {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 100;
}

#legendDiv {
    position: absolute;
    /* max-width: 20%;
    max-height: 25%; */
    padding: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 100;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    background-color: white;
}

.network-button {
    display: block;
    margin-bottom: 10px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    cursor: pointer;
}
