/* MS-5195: keep the route action visible and wrap long passenger lists. */
.route-table .table-head,
.route-table .table-row {
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr) minmax(90px, 1fr) minmax(90px, 0.7fr) 28px;
}
.route-table .table-row > div { min-width: 0; }
.route-table .table-row > .row-action { grid-column: 5; justify-self: end; }
.route-table .table-row > div:first-child small {
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: anywhere;
  white-space: normal;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
