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

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

.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 thead tr#header {
  background-color: #0b1a67;
}

.modernAdminGolfersPage #golfersTable 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;
}

.modernAdminGolfersPage #golfersTable thead tr#header td a.sortheader {
  color: #fff;
}

.modernAdminGolfersPage #golfersTable thead tr#header td a.sortheader:hover {
  color: #dde3f2;
}

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

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

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

.modernAdminGolfersPage #golfersTable tbody tr.whiteRow td {
  background-color: #fff;
}

.modernAdminGolfersPage #golfersTable tbody tr:hover td {
  background-color: #eef1fa;
}

.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;
}
