body {
  padding: 0;
  margin: 0;
  font-family: "nunito", sans-serif;
  overflow-x: hidden;
}

/* Toggle Styles */

#app {
  display: flex;
  width: 100%;
}

#main-content {
  width: calc(100% - 250px);
  min-height: 100vh;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: absolute;
  top: 0;
  right: 0;
}

#main-content.active{
  width: 100%;
}

/* Sidebar Styles */

#sidebar {
  z-index: 1000;
  position: fixed;
  width: 250px;
  height: 100%;
  /* overflow-y: auto; */
  background-color: #2596be;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  top: 0;
  left: 0;
}

#sidebar.active {
  margin-left: -250px;
}

#sidebar header {
  background-color: #2189ae;
  font-size: 20px;
  line-height: 58px;
  font-weight: 900;
}

#sidebar header a {
  color: #CFD8DC;
  display: block;
  text-decoration: none;
}

#sidebar ul li a{
  background: none;
  border-bottom: 1px solid #4cc6f3;
  color: #fff !important;
  font-size: 14px;
  padding: 16px 24px;
  border-radius: 0;
}

#sidebar ul li a:hover{
  background: #2189ae;
}

#sidebar ul li a i{
  margin-right: 16px;
}

#sidebar ul li ul{
  background-color: #206882;
}

#sidebar ul li ul li a:hover{
  background-color: #2189ae;
}

/* a[data-bs-toggle="collapse"] {
  position: relative;
} */

.nav-link.link-dark.dropdown-toggle::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

/* Navbar styles*/
/* .profile-name{
  font-size: 14px;
  font-weight: 500;
} */

/* .profile-email{
  font-size: 12px;
  font-weight: 500;
} */
/* end of sidebar and navbar */