html, body{
  height: 95%;
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

#header{
  width: 100%;
  height: 10%;
  background-color: #d9d8d7;
  margin-bottom: 0.5em;
  padding-bottom: 0.5em;
}

#title{
  height: 50%;
  text-align: center;
  font-size: 28px;
  font-weight: bolder;
}

#buttons{
  height: 50%;
  display: flex;
}

#buttons a {
  color: black;
  text-decoration: none;
}

#buttons a:hover {
  color: blue;
}

#nav{
  height: 100%;
  width: 70%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#nav a {
  display: block;
  padding-right: 1.5em;
}

.nav-selected {
  font-weight: bold;
  text-decoration: underline;
}

#toolbar-left{
  height: 100%;
  width: 15%;
  margin-left: 0.5em;
  display: flex;
  justify-content: left;
  align-items: flex-end;
}

#toolbar-right{
  height: 100%;
  width: 15%;
  text-align: right;
  margin-right: 0.5em;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  font-size: 18px !important;
}

.inline-icons {
  vertical-align: bottom;
  font-size: 20px !important;
}

#undo {
  margin-right: 1.5em;
}

#redo {
  margin-right: 1.5em;
}

#content{
  width: 100%;
  height: 80%;
  display: flex;
  align-items: center;
}

#middle-content{
  height: 100%;
  width: 70%;
  background-color: #d9d8d7;
}

#vis {
  height: 90%;
  width: 100%;
}

#footer{
  width: 100%;
  height: 10%;
  text-align: center;
  background-color: #d9d8d7;
  margin-top: 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* ============================================ */
/* Start Slider business */
#slider{
  text-align: center;
}

.slidecontainer {
  padding: 10px 100px;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}
/* Finish slider business */
/* ============================================= */


/* ============================================ */
/* Start Legend business */
.legend {
  position: absolute;
  padding-left: 1.5em;
  padding-top: 0.6em;
}

.legendimage {
  display: block;
  position: absolute;  
  padding: 10px;
  bottom: -10px;
  margin-left: -10px;
}

/* Finish Legend business */
/* ============================================= */


/* ============================================ */
/* Start Tooltip business */
.tooltip {
  position: absolute;
  text-align: center;
  width: auto;
  height: auto;
  padding: 5px;
  font: 12px sans-serif;
  background: lightsteelblue;
  border: 0px;
  border-radius: 8px;
  pointer-events: none;
}
/* Finish Tooltip business */
/* ============================================= */



/* ============================================ */
/* Start Sidebar business */
#left-sidebar {
  width: 15%;
  height: 100%;
  background-color:#d9d8d7;
  margin-right: 0.5em;
  padding-right: 0.5em;
}

#left-sidebar h3 {
  text-align: center;
}

#right-sidebar {
  width: 15%;
  height: 100%;
  background-color: #d9d8d7;
  margin-left: 0.5em;
  padding-left: 0.5em;
}

#right-sidebar h3 {
  text-align: center;
}

.sidebarContainer {
  padding: 20px;
}

.tg  {
  border-collapse:
  collapse;
  border-spacing:0;
  width: 100%;
}
.tg td{
  font-size:14px;
  padding:10px 5px;
  border-style:solid;
  border-width:1px;
  overflow:hidden;
  word-break:normal;
  border-color:black;
}

.tg th{
  font-size:14px;
  font-weight:normal;
  padding:10px 5px;
  border-style:solid;
  border-width:1px;
  overflow:hidden;
  word-break:normal;
  border-color:black;
}

.tg .td-center{
  border-color:inherit;
  text-align:center;
  vertical-align:top
}
/* Finish Sidebar business */
/* ============================================= */