/*
MODUL: Data Tables
*/
.rd-module-table .rd-container {max-width:var(--medium-container-width);}
.rd-module-table .rd-table-box { overflow-x:auto;}

.rd-module-table {
  /* Foreground, Background */
  scrollbar-color: var(--color-1) var(--color-white);
}
.rd-module-table::-webkit-scrollbar {
  width: 20px; /* Mostly for vertical scrollbars */
  height: 20px; /* Mostly for horizontal scrollbars */
}
.rd-module-table::-webkit-scrollbar-thumb { /* Foreground */
  background: var(--color-white);
  outline:0;
  box-shadow: inset 0 0 0 rgba(0,0,0,0);
  -webkit-box-shadow: inset 0 0 0 rgba(0,0,0,0);
  border-radius:0;
}
.rd-module-table::-webkit-scrollbar-track { /* Background */
  background: var(--color-white);
  box-shadow: inset 0 0 0 rgba(0,0,0,0);
  -webkit-box-shadow: inset 0 0 0 rgba(0,0,0,0);
  border-radius: 0;
}
