/* 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.

   The navy thead/sortheader/goldRow/whiteRow/hover treatment and #pageTitle spacing shared byte-for-byte with
   the Login Report / Failed Email Alerts / Admin Golfers pages now live in admin_sortable_table_modern.css --
   only what's specific to this page (table-wrap sizing, tbody cell padding/font-size, the delete action links)
   stays here. */

.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 tbody td {
  border: 1px solid #e2e6f2;
  padding: 6px 10px;
  font-size: 13px;
}

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

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