
body {
 	margin: 0 auto;
 	border: none;
 	padding: 0;
 	box-sizing: border-box;
	display: grid;
/*     wrap: wrap; */
	/*grid-template-columns: 60% 20% 20%; */
}

div, table {
	display: inline-block;
}

.dc-data-table {
	font-size: small;
	/*min-height: 100vh;*/
	/*can get the footer to stay in the same place*/
	/*currently if all entries showing then chart hidden*/
}

#my_table_container {
 	margin: 0 auto;
	min-height: 66vh;
	/*really should get default table height at window resize and set min container height then*/
}

.dc-data-table th {
/*     font-style: italic; */
/*     font-weight: normal; */
}

table>thead>tr>th { /*:first-child {*/
	padding: 5px 18px 5px 2px !important;
}

table>thead>tr>th:first-child {
	padding-right: 4em !important;
}


@media screen and (min-width:1080px) {
	
	body {
		grid-template-columns: 47% 26.5% 26.5%;
		grid-template-rows: repeat(3, 1fr);

	}
	
	#my_table_container{
		height: 66vh;
		grid-area: 1 / 1 / 3 / 2;		
	}



	/*min-width:100%; */
	
	.my-chart {
		height: 33vh;
	}

}