
.test_result_summary_table th {
    background-color: var(--ti_grey);
    color: rgba(255,255,255,0.8);
    font-weight: 600;
    padding: 10px;
    vertical-align: center;
}

.test_result_summary_table .test_result_summary_value {
    padding: 5px;
    text-align: left;
    vertical-align: center;
}

.test_result_summary_table .test_result_summary_result {
    padding: 5px;
    text-align: center;
    border-radius: 25px;
    width: 150px;
    vertical-align: center;    
}

.test_result_summary_spacer_row {
    height: 10px;
}

.test_result_summary_spacer_col {
    width: 10px;
}

.test_result_summary_result_passed {
    background-color: #88ff88;
}

.test_result_summary_result_failed {
    background-color: #ff8888;
}

.test_result_summary_result_skipped {
    background-color: #8888ff;
}

.test_result_log {
    border: 1px;
    border-style: dashed;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    background-color: #ffffcc;
    white-space: pre-wrap;
    font-family: monospace;
}

