h1{
    text-align: center;
    margin-bottom: 40px;
}
table { 
    width: 80%!important; 
    table-layout: fixed!important;
    border-collapse: collapse!important; 
    margin: 0 auto!important;
}
/* Zebra striping */
tr:nth-of-type(odd) { 
    background: #f2f2f2!important; 
}
th { 
    background: #E74C3C!important; 
    color: #fff!important; 
    font-weight: 600!important; 
}
td, th { 
    padding: 12px!important; 
    border: 1px solid #ccc!important; 
    text-align: left!important; 
    text-align: center!important;
}
/*Mobile View*/
@media 
only screen and 
    (max-width: 767px){
    td, tr { 
        display: block!important; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute!important;
		top: -9999px!important;
		left: -9999px!important;
	}
	tr {
        border: 1px solid #485749!important; 
    }
    tr + tr{
        margin-top: 1.5em!important;
    }
	td { 
		/* make like a "row" */
		border: none!important;
		border-bottom: 1px solid #eee!important; 
		position: relative!important;
		padding-left: 50%!important; 
        background-color: #fff!important;
        text-align: left!important; 
	}
	td:before { 
        content: attr(data-label)!important;
        display: inline-block!important;
        line-height: 1.5!important;
	    margin-left: -100%!important;
        width: 100%!important;
		white-space: nowrap!important;
		background-color: #485749!important;
	}
}