@charset "utf-8";

html,body {
   background-color: #CCCCCC;
   overflow-y: hidden; /* Adds vertical scroll if content exceeds max-height */
  overflow-x: hidden; /* Hides horizontal scroll if not needed */
}

.container-flex {
  display: flex;
  justify-content: center; /* Horizontally centers the table */
  align-items: center;   /* Vertically centers the table */
  min-height: 100vh;  /* Makes the container at least the full viewport height */
  max-height: 100%; 
  overflow-y: hidden; /* Adds vertical scroll if content exceeds max-height */
  overflow-x: hidden; /* Hides horizontal scroll if not needed */
}


table {
	position:relative;
	/*top: 30px;*/
	width: 100%;
	height: 100%;
	/*vertical-align: center;*/
	/* alignment-adjust: center; */
	margin-top: 0px;
	background-color: #CCCCCC;
}

td {
	font-size: 9px;
}