/* ========================================================================
   Insights Anomalies & Scanning tables

   Used by:
     docs/explore/insights/anomalies-and-scanning.md
   ======================================================================== */
/* Anomaly Status Table - the first cell pairs a colored status icon with its
   label, 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, "Acknowledged" and the icon beside it would
   otherwise break across lines on a narrow viewport. */
.anomaly-status-table {
  overflow-x: auto;
}

.anomaly-status-table table {
  table-layout: fixed;
  width: 100%;
  min-width: 24rem;
}

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

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