body {
  margin: 0%;
  width: 100%;
  font-family: sans-serif;
}
nav {
  width: 100%;
  height: 75px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  /* border-bottom: 2px solid rgb(163, 163, 163); */
}
#nav-left,
#nav-right {
  display: flex;
  align-items: center;
  padding: 0 26px;
}
#nav-left img {
  height: 50px;
}
#nav-right img {
  height: 50px;
  float: right;
  border-radius: 50%;
}
h2 {
  padding-left: 5px;
}
.st {
  text-decoration: underline;
}
/* navbar-bar section over*/
#main-container {
  height: 100vh;
  width: 100%;
  border-top: 2px solid rgb(163, 163, 163);
  display: flex;
}
ul {
  list-style-type: none;
  padding-left: 8px;
}
#side-container {
  width: 10%;
  height: 100vh;
  border-right: 2px solid rgb(163, 163, 163);
  padding: 10px;
  display: flex;
}
li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
h4,
th {
  color: rgb(87, 87, 87);
}
h4 {
  font-weight: 100;
}
li i {
  margin-right: 15px;
}
/* side-bar section over */
#right-container {
  width: calc(100% - 11%);
  height: 100vh;
}
.right-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  padding-top: 35px;
}
span {
  text-decoration: underline;
}
a {
  text-decoration: none;
  background-color: rgb(59, 185, 137);
  padding: 5px;
  color: #fff;
}
th,
td,
table {
  border: 1px solid rgb(163, 163, 163);
  border-collapse: collapse;
}
th,
td {
  text-align: start;
  padding: 20px;
}
table {
  width: 100%;
}
.table-sec {
  padding: 0 25px;
}
/* completed */
@media screen and (max-width: 1000px) {
  #side-container {
    padding: 0px;
    width: 16%;
  }
  li {
    padding-left: 0px;
    padding-right: 5px;
  }
  .table-sec {
    display: flex;
    overflow: auto;
    width: calc(100% - 11%);
  }
}
@media screen and (max-width: 750px) {
  #side-container {
    padding: 0px;
    width: 25%;
  }
  #right-container {
    width: calc(100% - 25%);
  }
}
@media screen and (max-width: 500px) {
  #side-container {
    display: none;
  }
  li {
    padding-right: 5px;
  }
  #right-container {
    width: 100%;
  }
  .right-head {
    padding-right: 8px;
  }
  #nav-left {
    width: 80%;
  }
  #nav-left,
  #nav-right {
    padding: 0 3px;
  }
}
