#tableHistory
{
  width: 70%;
  font-family: Arial, sans-serif;
  border-collapse: collapse;
}

#tableHistory td
{
	color:black;
	height: 30px;
	padding: 10px;
	font-size:1.2em;
	border-bottom: 10px solid lightgrey;
	border-top: 10px solid lightgrey; 
}
#tableHistory tr
{
	background-color: lightgrey;
	cursor: default;
}

#tableHistory th
{
	height: 30px;
}

#tableData
{
  width: 60%;
  font-family: Arial, sans-serif;
  border-collapse: collapse;
  font-size: 1.3em;
}

#tableData thead
{
	background-color: white;
	position: sticky;
	top: 350px;
}

#tableData td
{
	height: 30px;
}

@media screen and (max-width: 800px)
{
	#tableHistory
	{
		width: 95%;
	}
	
	#tableData
	{
		width: 80%;
	}
	
	#tableData thead
	{
		top: 0px;
	}
}