/* ========================================================================
   Insights Checks & Profiling tables

   Used by:
     docs/explore/insights/checks-and-profiling.md
   ======================================================================== */
/* Check Summary Tables - both the Assertion Status and the Check Type table
   put a colored icon and a label in the first cell, so that column needs a
   fixed share rather than the narrow one the theme derives from the longer
   descriptions beside it.

   The wrapper scrolls instead of letting the fixed layout squash the label:
   below the table's min-width, "Not Asserted" and the icon beside it would
   otherwise break across lines on a narrow viewport. */
.check-summary-table {
  overflow-x: auto;
}

.check-summary-table table {
  table-layout: fixed;
  width: 100%;
  min-width: 24rem;
}

.check-summary-table table th:nth-child(1),
.check-summary-table table td:nth-child(1) {
  width: 32%;
}

.check-summary-table table th:nth-child(2),
.check-summary-table table td:nth-child(2) {
  width: 68%;
}
