* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: 'FontName', sans-serif;
}

#top {
  position: fixed;
  top: 22px;
  left: 0;
  width: 100%;
  height: 122px;
  background-color: #ccc;
  text-align: center;
  padding-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

#top-left {
  padding: 10px;
  left: 0;
  position: absolute;
}

#top-center {
  padding: 10px;
  left: 20%;
  position: fixed;
}

#top-right {
}

#left {
  position: fixed;
  top: 122px;
  left: 0;
  width: 20%;
  bottom: 0;
  background-color: #333;
  color: #ddd;
  padding: 0px;
  transition: all 0.5s ease;
}

#lef-div-content {
  padding: 10px;
}

#main {
  position: fixed;
  top: 122px;
  left: 20%;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  padding: 10px;
  overflow: scroll;
}

#top-hide-btn {
  padding: 0%;
  top: 92px;
  right: 0;
  position: absolute;
  background-color: #ABDFF1;
  height: 8px;
  width: 100%;
  border: none;
}
#left-hide-btn {
  padding: 0%;
  top: 0%;
  right: 0;
  width: 8px;
  height: 100%;
  position: absolute;
  border: none;
  background-color: #ABDFF1;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  cursor: pointer;
  padding: 15px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  background-color: #333;
  color: #ddd;
}
.accordion2 {
  cursor: pointer;
  padding: 10px 22px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  background-color: #333;
  color: #ABDFF1;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover, .accordion2:hover {
  background-color: #ccc;
  color: black;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  display: none;
  overflow: hidden;
}



/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
  height: 22px;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 5px 15px 5px 15px;
  text-decoration: none;
  font-size: 12px;
  height: 50px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ccc;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #ABDFF1;
  color: #333;
  font-size: 12px;
}




.dropdown {
  float: left;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 12px;
  border: none;
  outline: none;
  background-color: #333;
  color: #f2f2f2;
  padding: 5px 15px 5px 15px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #ABDFF1;
  color: #333;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ccc;
  color: #333;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: #333;
  padding: 15px 15px 5px 15px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ccc;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}


#myInput {
  background-image: url('/css/searchicon.png'); /* Add a search icon to input */
  background-position: 10px 12px; /* Position the search icon */
  background-repeat: no-repeat; /* Do not repeat the icon image */
  width: 100%; /* Full-width */
  font-size: 16px; /* Increase font-size */
  padding: 12px 15px 12px 40px; /* Add some padding */
  border: 1px solid #ddd; /* Add a grey border */
  margin-bottom: 12px; /* Add some space below the input */
}

#myTable {
  border-collapse: collapse; /* Collapse borders */
  width: 100%; /* Full-width */
  border: 1px solid #ddd; /* Add a grey border */
  font-size: 16px; /* Increase font-size */
}

#myTable th, #myTable td {
  text-align: left; /* Left-align text */
  padding: 12px; /* Add padding */
}

#myTable tr {
  /* Add a bottom border to all table rows */
  border-bottom: 1px solid #ddd;
}

#myTable tr.header, #myTable tr:hover {
  /* Add a grey background color to the table header and on hover */
  background-color: #f1f1f1;
}