.multiplication-facts-table table{
	border-collapse: collapse;
	/*border-top: 1px solid #c7cbcf;
    border-left: 1px solid #c7cbcf;
    border-right: 1px solid #c7cbcf;*/
	border-top: 1px solid #000;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
	font-family: Roboto, Arial, sans-serif;
	font-size:18px;
	line-height:18px;
	font-weight: 500;
	color:black;
}
.multiplication-facts-table table tr {
    /*border-bottom: 1px solid #c7cbcf;*/
	border-bottom: 1px solid #000;
}
.multiplication-facts-table table tr:hover{cursor:pointer}
.multiplication-facts-table tr:focus-visible {
  outline: 3px solid #f8a412;
  outline-offset: 4px;
}
.multiplication-facts-table table td{
    padding: 10px;
    text-align: center;
}
.multiplication-facts-table table tr[data-active="true"]{ color:#fff}
.multiplication-facts-for-1 table tr[data-active="true"]{ background-color:#029584}
.multiplication-facts-for-2 table tr[data-active="true"]{ background-color:#14b106}
.multiplication-facts-for-3 table tr[data-active="true"]{ background-color:#7ac603}
.multiplication-facts-for-4 table tr[data-active="true"]{ background-color:#02adb3}
.multiplication-facts-for-5 table tr[data-active="true"]{ background-color:#0490e2}
.multiplication-facts-for-6 table tr[data-active="true"]{ background-color:#5a6ce0}
.multiplication-facts-for-7 table tr[data-active="true"]{ background-color:#8d6af0}
.multiplication-facts-for-8 table tr[data-active="true"]{ background-color:#7530c9}
.multiplication-facts-for-9 table tr[data-active="true"]{ background-color:#c1379a}
.multiplication-facts-for-10 table tr[data-active="true"]{ background-color:#e44cbe}
.multiplication-facts-for-11 table tr[data-active="true"]{ background-color:#fd834e}
.multiplication-facts-for-12 table tr[data-active="true"]{ background-color:#f4454b}
/* ------- hover ---------------------- */
@media (hover: hover) and (pointer: fine) {
	.multiplication-facts-table table tr:hover{ color:#fff}
	.multiplication-facts-for-1 table tr:hover{ background-color:#029584}
	.multiplication-facts-for-2 table tr:hover{ background-color:#14b106}
	.multiplication-facts-for-3 table tr:hover{ background-color:#7ac603}
	.multiplication-facts-for-4 table tr:hover{ background-color:#02adb3}
	.multiplication-facts-for-5 table tr:hover{ background-color:#0490e2}
	.multiplication-facts-for-6 table tr:hover{ background-color:#5a6ce0}
	.multiplication-facts-for-7 table tr:hover{ background-color:#8d6af0}
	.multiplication-facts-for-8 table tr:hover{ background-color:#7530c9}
	.multiplication-facts-for-9 table tr:hover{ background-color:#c1379a}
	.multiplication-facts-for-10 table tr:hover{ background-color:#e44cbe}
	.multiplication-facts-for-11 table tr:hover{ background-color:#fd834e}
	.multiplication-facts-for-12 table tr:hover{ background-color:#f4454b}
}