/* Chiller Transport "List of 14 MPCs". Desktop shows the table (red header from
   #table-1). On mobile (≤575px) the rows become stacked cards, matching the
   Nationwide Delivery post-office list. */
@media (max-width: 575px) {
  /* Don't force the scroll min-width when rendering cards. The id+class selector
     outranks the global `.rate-table-scroll > #table-1 { min-width: 460px }`. */
  #table-1.chiller-mpc-table {
    min-width: 0;
    border: 0;
  }
  .chiller-mpc-table,
  .chiller-mpc-table tbody {
    display: block;
    width: 100%;
  }
  .chiller-mpc-table thead {
    display: none;
  }
  .chiller-mpc-table tbody tr {
    display: block;
    margin: 0 0 12px;
    padding: 4px 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  }
  .chiller-mpc-table tbody td {
    display: flex;
    align-items: flex-start;
    width: auto;
    padding: 7px 14px;
    border: none;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
  }
  /* Bold label on the left of each cell, derived from the column header. */
  .chiller-mpc-table tbody td::before {
    content: attr(data-label);
    flex: 0 0 96px;
    padding-right: 10px;
    font-weight: 700;
    color: #212121;
  }
}