
:root {
    --nav: #111;
    --bg: #292929;
    --text: #2196F3;
    --highlight:green;
    --sidepanel-height : 600px;
}

body {
    background-color: var(--bg);
    /* Hide scrollbar and overflow*/
    overflow: hidden; 
    overflow-y: hidden; 
    overflow-x: hidden;
}

.sliderstuff{
    margin:0% 5% 0% 0%;

}

br {
    display: block;
    margin: 1px 0;
 }

.iconimages{
    padding: 0px;
    width: 20%;
    height:  20%;
}

#nodenav{

    z-index: 1;
    color: white;
    float: center;
    size: 10px;
    margin: 0% 7%;

    border-radius: 5px;
    border: 0px solid red;
    width: 80%;
    padding: 3%;
    background: #111;
    outline: green solid 2px;
}


 
 
#graphSizeStat{
    background-image: "web/assets/neighbors.png";
}


h2{
    color: lightgreen;
}

.logomenu {
    display: block;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    width: 20%;
}

#loadfile {
    position: fixed;
    top: -100%
}

#noDeco {
    text-decoration: none
}

.selectable{
    user-select: all;

}


.sidenav {
    user-select: none; /* Standard syntax */
    overflow-y: scroll;
    overflow-x: hidden;

    width: 12%;
    position: fixed;
    z-index: 1;
    top: 3%;
    right: 3%;
    max-height: var(--sidepanel-height);
    background: var(--nav);
    outline: var(--highlight) solid 2px;
    white-space: nowrap;
}

.sidenav p {
    margin: 5% 20% 0% 20%;
    text-decoration: none;
    font-size: 12px;
    color: var(--text);

}

.sidenav a:hover {
    background: #999;
}

.sidenav button {
    display: inline-block;
    cursor: pointer;
    color: black;
    background: var(--highlight);
    width: 100%;
    bottom: 20%;
    border: 2px solid black;

}


.sidenav button:hover {
    background: darkgreen;

}
 
/* help button on click  */

.collapsible {
  background-color: #eee;
  color: #444;
  overflow-y: scroll;

}


.help {
  background-color: var(--nav);
  color: var(--nav);
  display: none;
}

.help p {

    margin: 5% 0% ;
    align-items: left;  
    text-align: left;
  }
  

.warning {
    color: red;
    text-decoration-line: underline;
    background-color: hwb(158 2% 0%);
}

.loading {
    width: 100%;
 
}
 
.slider {
    margin: 0% 0% 10% 0%;

    width: 60%;
    height: 5px;
    border-radius: 2px;  
    background: hwb(158 2% 0%);
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
  }
  
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: #04AA6D;
    cursor: pointer;
  }
  
  .slider::-moz-range-thumb {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #04AA6D;
    cursor: pointer;
  }

.datasetLabel:hover {
    color: white;
   
}

#preview_img{
    
    display:block;
    margin:auto;
    overflow-y: scroll;
    max-width: 100%;

}

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: var(--nav);
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--nav);
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }