html, #root {
  height: 100%;
}
body {
    overscroll-behavior: none;
    height: 100%;
    font-family: sans-serif;
}
.fixed-layout {
  overflow: hidden;
}

/* On non-mobile devices, revert to normal document flow */
@media (min-width: 768px) {
  html, body, #root {
    height: auto;
  }
  .fixed-layout {
    overflow: auto;
  }
}

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.dark .custom-scrollbar::-webkit-scrollbar-track {
    background: #1f2937;
}
.light .custom-scrollbar::-webkit-scrollbar-track {
    background: #e7e5e4;
}
.dark .custom-scrollbar::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 3px;
}
.light .custom-scrollbar::-webkit-scrollbar-thumb {
    background: #a8a29e;
    border-radius: 3px;
}
.dark .custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}
.light .custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background: #78716c;
}
