/* Tables */
:root {
  --table-bg: #ffffff;
}

body.dark-mode {
  --table-bg: #2d2d2d;
}

.scrollbar {
  max-height: 400px;
  overflow-y: auto;
}

.table {
  border-collapse: separate;
  border-spacing: 0;
}

.table thead {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--table-bg);
}

/* Sidebar */
#sidebar-wrapper {
  height: 100vh;        
  overflow-y: auto;        
  overflow-x: hidden;
}