/* Shared responsive table behaviour for the whole site. */
.table-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.table-wrapper > table {
  width: 100% !important;
  min-width: 100% !important;
  table-layout: auto !important;
}

.table-wrapper > table th,
.table-wrapper > table td {
  min-width: 0 !important;
  max-width: none;
  white-space: normal !important;
  overflow: visible !important;
  overflow-wrap: break-word;
  word-break: normal;
  text-overflow: clip !important;
  vertical-align: top;
}

.table-wrapper > table thead th {
  white-space: normal !important;
  overflow-wrap: anywhere;
}

@media (max-width: 720px) {
  .table-wrapper > table {
    min-width: 640px;
  }

  .data-table th,
  .data-table td {
    padding: 10px 12px;
  }
}
