.full-page-wrapper{
  min-height: 100dvh;
}
.hover-bg:hover{
  background-color: #eee;
}
.active-bg{
  background-color: #eee;
}
.translate-left {
  transform: translateX(-100%);
}
.translate-none {
  transform: translateX(0);
}
#sidebar {
  width: 250px;
  z-index: 10;
  transition: transform 0.3s ease-in-out;
}
#adminSubjectTable,
#adminTeacherTable,
#adminSemesterTable,
#adminDepartmentTable,
#adminStudentTable, 
#staffSubjectTable {
  font-size: 12px;
  max-height: 400px;
}
@media (min-width: 992px) {
  #sidebar {
    transform: translateX(0) !important;
    position: sticky !important;
    max-height: 10vh !important;
  }
  #menuToggle {
    display: none;
  }
}