/*#container { display:block; }
@media only screen and (orientation:portrait){
  .main{
    width: 120%;
    margin-left: 120px;
    padding: 0px;
  }
  #container {
    height: 100vw;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    transform: translate(x, y);
  }
}
@media only screen and (orientation:landscape){
  #container {
     -webkit-transform: rotate(0deg);
     -moz-transform: rotate(0deg);
     -o-transform: rotate(0deg);
     -ms-transform: rotate(0deg);
     transform: rotate(0deg);
  }
}
*/
@media only screen{
  .main{
    position: fixed;
  }

body {
  background-color: lightGray;
  margin-top: 0px;
  margin-bottom: 0px;
}
h1 {
  border-top: 1px;
  margin-top: -1px;
}
h2 {
  font-weight: bold;
  color: black;
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 8px;
  margin-left: 20px;
  z-index: 20;
}

/* The sidebar menu */
.sidenav {
  height: 100%; /* Full-height: remove this if you want "auto" height */
  width: 160px; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: .5; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: gray; /* Black */
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 10px;
}

/* The navigation menu links */
.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;
}

/* Style page content */
.main {
  /*height: 100%; /* Full-height: remove this if you want "auto" height */
  position: relative;
  margin-left: 160px;
  padding-bottom: 50px;
  z-index: 100;
  background-color: lightGray;

}



.sidenav .openbtn {
  position: absolute;
  font-size: 10px;
  cursor: pointer;
  background-color: darkslategray;
  color: white;
  padding: 3px 3px;
  border: 2px;
  border-color: white;
  top: 3px;
  left: 140px;
}

.openbtn:hover {
  background-color: #444;
}


/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 700px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
  .main {margin-left: 12px;}
  .sidenav .openbtn {left: 2px;}
}


.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  right: 105%;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}



.divIcon {
  border: 1px solid black;
  font-weight: bold;
}
.green {
  background-color: limegreen;
}
.yellow{
  background-color: yellow;
}
.orange{
  background-color: orange;
}
.red{
  background-color: red
}


