/* Modernized Admin "Administer Golfers" list page. Scoped under .modernAdminGolfersPage so it never affects
   other pages that reuse the same .admin/.adminTable/.goldRow/.grayRow/.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. The shared
   _sortable_checkbox_td.rhtml partial (Active/LIV columns) is styled generically here too since it's only
   used inside this table on this page's markup.

   The navy thead/sortheader/goldRow/whiteRow/hover treatment and #pageTitle spacing shared byte-for-byte with
   the Login Report / Failed Email Alerts / Duplicate Lineup Records 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 grayRow variant, action links, tfoot) stays here. */

.modernAdminGolfersPage .adminTable.golfers {
  display: block;
  width: fit-content;
  max-width: 100%;
  border: 1px solid #e2e6f2;
  border-radius: 10px;
}

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

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

.modernAdminGolfersPage #golfersTable tbody tr.grayRow td {
  background-color: #f4f6fb;
}

.modernAdminGolfersPage #golfersTable td.number,
.modernAdminGolfersPage #golfersTable td.centerText {
  text-align: center;
}

.modernAdminGolfersPage #golfersTable .actionLink a {
  font-weight: 600;
  text-decoration: none;
}

.modernAdminGolfersPage #golfersTable td.actionLink a {
  color: #0b1a67;
}

.modernAdminGolfersPage #golfersTable td.actionLink:last-child a {
  color: #c30900;
}

.modernAdminGolfersPage #golfersTable .actionLink a:hover {
  text-decoration: underline;
}

.modernAdminGolfersPage #golfersTable .disabledActionLink {
  color: #b7bdca;
  font-weight: 600;
}

.modernAdminGolfersPage #golfersTable tfoot td {
  background: #fff;
  border: none;
  padding: 10px 8px;
  font-size: 12px;
  color: #6b7280;
}
