/* Modernized Admin "Duplicate Lineup Records" troubleshooting page. Scoped under
   .modernDuplicateLineupRecordsPage so it never affects other pages that reuse the same .admin/.adminTable/
   .goldRow/.whiteRow/.actionLink utility classes shared across dozens of other admin tables in the app. Table
   structure/IDs used by the sortable JS (sortable_us.js) are left untouched -- only colors/spacing/borders
   change. Both links in a row (the Lineup Id and "Delete") trigger the same destructive delete action, so both
   are styled the same red to signal that clearly. */

.modernDuplicateLineupRecordsPage #pageTitle {
  margin-bottom: 16px;
}

.modernDuplicateLineupRecordsPage .duplicateLineupTableWrap {
  display: block;
  width: fit-content;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid #e2e6f2;
  border-radius: 10px;
  -webkit-overflow-scrolling: touch;
}

.modernDuplicateLineupRecordsPage #seasonsTable {
  width: auto;
  margin: 0;
  border-collapse: collapse;
  white-space: nowrap;
}

.modernDuplicateLineupRecordsPage #seasonsTable thead tr#header {
  background-color: #0b1a67;
}

.modernDuplicateLineupRecordsPage #seasonsTable thead tr#header td {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.4px;
  padding: 6px 10px;
  border: 1px solid #24358c;
}

.modernDuplicateLineupRecordsPage #seasonsTable thead tr#header td a.sortheader {
  color: #fff;
}

.modernDuplicateLineupRecordsPage #seasonsTable thead tr#header td a.sortheader:hover {
  color: #dde3f2;
}

.modernDuplicateLineupRecordsPage #seasonsTable tbody td {
  border: 1px solid #e2e6f2;
  padding: 6px 10px;
  font-size: 13px;
}

.modernDuplicateLineupRecordsPage #seasonsTable tbody tr.goldRow td {
  background-color: #f4f6fb;
}

.modernDuplicateLineupRecordsPage #seasonsTable tbody tr.whiteRow td {
  background-color: #fff;
}

.modernDuplicateLineupRecordsPage #seasonsTable tbody tr:hover td {
  background-color: #eef1fa;
}

.modernDuplicateLineupRecordsPage #seasonsTable .actionLink a {
  color: #c30900;
  font-weight: 600;
  text-decoration: none;
}

.modernDuplicateLineupRecordsPage #seasonsTable .actionLink a:hover {
  text-decoration: underline;
}
