/*
 * Disable odd/even coloring for docutils tables if it's a coverage table.
 * Otherwise, the 'nth-child' rule will always override row colors indicating the coverage level.
 */
.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td {
	background-color: unset;
}

/*
 * Coloring for 0..30, 30..50, 50..80, 80..90, 90.100% coverage
 */
/* very good */
.report-cov-below100 {
	background: rgba(0, 200, 82, .4);
}
/* good */
.report-cov-below90 {
	background: rgba(0, 200, 82, .2);
}
/* modest */
.report-cov-below80 {
	background: rgba(255, 145, 0, .2);
}
/* bad */
.report-cov-below50 {
	background: rgba(255, 82, 82, .2);
}
/* very bad */
.report-cov-below30 {
	background: rgba(101, 31, 255, .2);
}
/* internal error */
.report-cov-error{
	background: rgba(255, 0, 0, .4);
}

.report-dep-summary-row {
	font-weight: bold;
}
.report-codecov-summary-row {
	font-weight: bold;
}
.report-doccov-summary-row {
	font-weight: bold;
}
.report-unittest-summary-row {
	font-weight: bold;
}
