/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 0px;
  height: 4px;
}

/* Custom Scrollbar Track */
::-webkit-scrollbar-track {
}

::-webkit-scrollbar-track:hover {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5;
  border-radius: 10px;
}

/* Custom Scrollbar Thumb */
::-webkit-scrollbar-thumb {
  background: #A8A8A8;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #656565;
}

/* Custom Scrollbar Corner */
::-webkit-scrollbar-corner {
  display: none;
}

/* Menu Scrollbar */
.menu-scrollbar {
  overflow: auto;
  max-height: 90%;
  padding-right: 4px;
}

/* Menu Scrollbar */
.menu-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

/* right-side-panel-scrollbar Scrollbar */
.right-side-panel-scrollbar {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 100%;
}

/* right-side-panel-scrollbar Scrollbar */
.right-side-panel-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

/* datatable scrollbar */
.datatable-scrollbar {
  overflow-y: auto;
  overflow-x: auto;
}

/* datatable scrollbar */
.datatable-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
