/* Scss Document */
body {
	background-color: #e0e383;
}
table {
	border-style: solid;
	border-width: 0px;
	background-color:#FFFFFF;
}

body::-webkit-scrollbar {
  width: 18px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background-color: #ffffff; /* color of the tracking area */
}

body::-webkit-scrollbar-button:single-button {
  background-color: #e79627;
  display: block;
  border-style: solid;
  height: 20px;
  width: 14px;
}

body::-webkit-scrollbar-thumb {
  background-color: #feff00; /* color of the scroll thumb */
  border-radius: 8px; /* roundness of the scroll thumb */
  border: 4px solid orange; /* creates padding around scroll thumb */
}