/* Modernized Commish "Signup Attempts" report page. Scoped under .modernSignupAttemptsPage so it never affects
   other pages that reuse the same .signupAttempts/.adminLabel/.digg_pagination classes, or the global
   .ptfgButtonBlue utility class. Table structure/IDs are left untouched -- only colors/spacing/borders change,
   plus the fixed 1000px table width is replaced with a responsive scroll wrapper.

   The navy thead, goldRow/whiteRow-equivalent zebra (signupAttemptsRowOdd/Even), hover shading, and #pageTitle
   spacing shared byte-for-byte (after aligning a couple near-miss values) with the other admin report pages now
   live in admin_sortable_table_modern.css -- only what's specific to this page (the note callout, team-count
   badge, table-wrap sizing, tbody cell padding, "not entered" highlight, action links, and pagination) stays
   here. */

.modernSignupAttemptsPage .signupAttemptsNote {
  padding: 10px 14px;
  margin-bottom: 14px;
  max-width: 700px;
  box-sizing: border-box;
}

.modernSignupAttemptsPage .signupAttemptsTeamCount {
  display: inline-block;
  background: #f4f6fb;
  border: 1px solid #e2e6f2;
  border-radius: 6px;
  color: #0b1a67;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  margin-bottom: 14px;
}

.modernSignupAttemptsPage .signupAttemptsTableWrap {
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid #e2e6f2;
  border-radius: 10px;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 16px;
}

.modernSignupAttemptsPage .signupAttempts {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  margin-bottom: 0;
  font-size: 12px;
}

.modernSignupAttemptsPage .signupAttempts tr {
  border: none;
}

/* Tighter than the shared admin-report-table padding (admin_sortable_table_modern.css) -- this table has more
   columns than the others sharing that file, so a tighter column width reads better here specifically. Centered
   here too (the shared rule left-aligns to match the other tables' <td>-based headers). */
.modernSignupAttemptsPage .signupAttempts thead th {
  padding: 5px 6px;
  text-align: center;
}

.modernSignupAttemptsPage .signupAttempts td {
  border: 1px solid #e2e6f2;
  padding: 4px 6px;
}

.modernSignupAttemptsPage .signupAttemptNotEntered td {
  color: #c30900;
  background-color: #fff8e8;
}

.modernSignupAttemptsPage .actionLink a {
  font-weight: 600;
  text-decoration: none;
}

.modernSignupAttemptsPage td.actionLink:nth-last-child(2) a {
  color: #c30900;
}

.modernSignupAttemptsPage td.actionLink:last-child a {
  color: #0b1a67;
}

.modernSignupAttemptsPage .actionLink a:hover {
  text-decoration: underline;
}

.modernSignupAttemptsPage .digg_pagination {
  margin: 0;
  background: transparent;
}

.modernSignupAttemptsPage .pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 4px;
}

.modernSignupAttemptsPage .page-link {
  display: inline-block;
  border: 1px solid #e2e6f2;
  border-radius: 6px;
  padding: 5px 11px;
  font-size: 13px;
  color: #0b1a67;
  text-decoration: none;
}

.modernSignupAttemptsPage .page-link:hover {
  background: #f4f6fb;
}

.modernSignupAttemptsPage .page-item.active .page-link {
  background: #0b1a67;
  border-color: #0b1a67;
  color: #fff;
}

.modernSignupAttemptsPage .page-item.disabled .page-link {
  color: #b7bdca;
}
