

/* --------------- For word cloud ------------- */

#word-cloud {
    background-color: white;
    position: absolute;
    top: 50px; /* bootstrap navbar height */
    left: 0;
    right: 0;
    bottom: 30px;

}

#word-cloud-type {
    position:absolute;
    top: 70px;
    left: 20px;
}

.word-cloud-word {
    cursor: pointer;
}

/* --------------- For concept map ------------ */

#concept-map img {
    width: 100%;
}

#sequence {
    background-color: white;
    position: absolute;
    width: 100%;
    top: 50px;  /*bootstrap navbar height */
    height: 50px;
    border-bottom: 1px solid rgb(43,43,43);
}

.crumb {
    cursor: pointer;
}

#graph-content {
  background-color: white;
  position: absolute;
  top: 100px;  /*bootstrap navbar height + sequence height */
  bottom: 30px;
  left: 0;
  width: 510px;
}

#text-content {
    background-color: rgb(240,240,240);
    position: absolute;
    top: 100px; /*bootstrap navbar height + sequence height */
    bottom: 30px;
    left: 510px; /* default: for mobile, although app not designed for mobile slider+10 */
    right: 0;
    overflow: auto;
    padding: 15px;
    font-size: 18px;
}

#text-content img {
    /*float: left;*/
    margin: 5px;
}

#concept-slider {
    background-color: rgb(43,43,43);
    position: absolute;
    top: 100px; /*bootstrap navbar height + sequence height */
    bottom: 30px;
    left: 500px; /* default: for mobile, although app not designed for mobile */
    width: 10px;
    cursor: ew-resize;
}
/* using bootstrap media queries to set responsive slider start location */
@media only screen and (min-width: 992px) {
    #concept-slider {
        left: 600px;
    }
    #text-content {
        left: 610px;
    }
    #graph-content {
        width: 600px;
    }
}
@media only screen and (min-width: 1200px) {
    #concept-slider {
        left: 950px;
        width: 5px;
    }
    #text-content {
        left: 955px;
    }
    #graph-content {
        width: 950px;
    }
}

#concept-slider:hover {
    background-color: rgb(100,100,100);
}

.node {
    cursor: pointer;
}

.node text {
  font: 10px sans-serif;
  pointer-events: none;
  color: black;
}

.nodeHighlight {
    stroke: black;
    stroke-width: 1.5px;
}

.links {
    cursor: pointer;
}

.linkText {
    font-family: sans-serif;
    font-size: 14px;
    cursor: pointer;
}
.linkShadow {
    font-family: sans-serif;
    font-size: 14px;
    stroke: white;
    stroke-width: 5px;
}
