html,body {
  background-color: #CCCCCC;
  overflow-y: hidden; 
  overflow-x: hidden; /* Hides horizontal scroll if not needed */
}

.table-container {
  max-height: 100%; /* Or whatever height you need */
  overflow-y: hidden; 
  overflow-x: hidden; /* Hides horizontal scroll if not needed */
  top:0;	
  position: sticky;
  z-index: 1; 
}

table {
	position:relative;
	top:0px;
	width: 100%;
	height: 95%;
	border-spacing: 10px 0;
	border-collapse: separate;
}