/* Make tablepress-3 scroll horizontally on small screens */
#tablepress-3_wrapper .dt-scroll-body,
#tablepress-3 {
	overflow-x: auto;
	width: 100%;
}

/* Tidy hover and keep cells from wrapping weirdly on phones */
@media (max-width: 768px) {
	#tablepress-3 td,
	#tablepress-3 th {
		white-space: nowrap;
	}

	#tablepress-3 tr:hover td {
		background: rgba(0,0,0,.03);
	}
}