
/* ── Global font size increase ── */
html {
    font-size: 17px; /* Bootstrap default is 16px; bump to 17px for readability */
}
@media (max-width: 575.98px) {
    html { font-size: 15px; } /* scale back on mobile so rem-based sizes don't overflow */
}

/* ── League Admin Tabs ── */
.league-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 12px;
    background: #f0f2f5;
    border-radius: 10px;
    border: none;
    list-style: none;
    margin-bottom: 1.5rem !important;
}

.league-tabs .nav-item {
    margin: 0;
}

.league-tabs .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 7px;
    border: none;
    color: #444;
    background: transparent;
    transition: background 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.league-tabs .nav-link:hover {
    background: #dde1ea;
    color: #0a2b5a;
}

.league-tabs .nav-link.active {
    background: #0a2b5a;
    color: #fff;
    box-shadow: 0 2px 8px rgba(10,43,90,0.25);
}

.league-tabs .nav-link.active:hover {
    background: #0d3570;
    color: #fff;
}

.carousel-item img {
    height: 60vh; /* 60% of viewport height */
    object-fit: cover;
  }

  /* Ensure captions are centered and not too large */
  .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
  }

  /* Mobile tweaks */
  @media (max-width: 768px) {
    .carousel-item img {
      height: 40vh;
    }
    .carousel-caption h1 {
      font-size: 1.5rem;
    }
    .carousel-caption p {
      font-size: 1rem;
    }
    .carousel-caption .btn {
      font-size: 0.9rem;
      padding: 0.4rem 1rem;
    }
  }

.camp-registration form input,
.camp-registration form textarea {
  border-radius: 0.5rem;
  border: 1px solid #ccc;
}

form input:focus, form textarea:focus {
  border-color: #14213d;
  box-shadow: 0 0 5px rgba(20, 33, 61, 0.3);
}

.rental-form .btn-primary {
  background-color: #14213d;
  border-color: #14213d;
}

.btn-primary:hover {
  background-color: #0f1a33;
  border-color: #0f1a33;
}


/* Registration Form Enhancements */
.section h4 {
  color: #14213d;
}

.section {
  margin-bottom: 2rem;
  background: #2c3158;
}

.card {
  border-radius: 1rem;
}

.card-body h5 {
  color: #14213d;
}

.section h4 {
  color: #14213d;
}

.section {
  margin-bottom: 2rem;
}

.card {
  border-radius: 1rem;
}


.registration-section {
  background: linear-gradient(180deg, #2c3158 0%, #1f2240 100%);
  min-height: 100vh;
  padding: 4rem 0;
}

.pill-nav {
  position: absolute;
  top: 15px;
  left: 50%;
  z-index: 1050;
  transform: translateX(-50%);
  display: inline-block;
  border: 2px solid #EBECF1;
  border-radius: 30px;
  animation: slide-in 1s ease-out;
}

.registration-card {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 1rem;
  background-color: #f8f9fa;
}
 .pill-nav ul {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  margin: 0;
  padding: 0 30px;
  list-style-type: none;
  li:not(:last-child) {
    margin-right: 40px;
  }
  li {
    border: 2px solid transparent;
    border-radius: 5px;
    padding: 10px;
    transition: background 0.2s;
    a {
      font-size: large;
      color: #2375D8;
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    ul {
      visibility: hidden;
      opacity: 0;
      position: absolute;
      display: block;
      margin: 12px -12px;
      padding: 0;
      background: #2c3158;
      border: 2px solid #2c3158;
      border-right: 2px solid #2c3158;
      border-bottom: 2px solid #2c3158;
      border-radius: 5px;
      transition: opacity 0.2s, visibility 0.2s;
      li {
        margin: -2px 0 0 -2px;
        width: 100%;
        line-height: 1.7;
        a {
          color: #2375D8;
        }
      }
    }
    &:hover {

      background: #EC4138;
      border: 2px solid #F05749;
      border-right: 2px solid #E02A21;
      border-bottom: 2px solid #E02A21;
      a {
        color: #F9F8FD;
      }
      li ul {
          visibility: hidden;
          opacity: 0;
          top: 0;
          left: 100%;
          margin-left: 6px;
          white-space: nowrap;
      }
      li:hover > ul {
          visibility: visible;
          opacity: 1;
      }
      ul {
        visibility: visible;
        opacity: 1;
        box-shadow: 0px 3px 5px 2px #EBECF1;
        li {
          a {
            color: #F9F8FD;
          }
        }
      }
    }
  }
}



.dropdown-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  padding: 6px 10px;
  pointer-events: none; /* not clickable */
}


.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #222;
  text-decoration: none;
  font-weight: 600;
}

.pdf-icon {
  font-size: 18px;
}

.table-modern tbody tr {
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  margin-bottom: 10px;
  display: block;
  text-decoration:none;
  background: #f9fafb;
}
.widget-table tbody tr {
  background: #f9fafb;
}
.table-modern tbody td,
.table-modern thead th {
  display: block;
  background: #f9fafb;
}

.table-modern tbody tr:nth-child(even) {
  background: #fafafa;
}

.table-links {
  width: 100%;
  border-collapse: collapse;
}

.table-links td {
  padding: 0; /* lets the link control spacing */
  font-size: 1.2rem !important;
}

.table-links a {
  font-size: 1.2rem;
  padding: 4px 6px;
  text-decoration: underline;
  color: black;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.1s ease;
}

/* subtle divider */
.table-links tr:not(:last-child) td {
  border-bottom: 1px solid #eee;
}

/* hover effect */
.table-links a:hover {
  background: #f4f6f8;
  transform: translateX(1px);
}

.coming-soon {
  opacity: 0.55;
  pointer-events: none; /* disables clicks */
}

.coming-soon .btn {
  cursor: not-allowed;
  opacity: 0.7;
}

.nav-disabled {
  opacity: 0.55;           /* fades it */
  pointer-events: none;    /* disables clicking */
  cursor: not-allowed;     /* shows disabled cursor */
  text-decoration: none;   /* removes underline */
}

.print-message {
  display: none;
}

@media print {
  .message-field {
    display: none;  /* hide textarea */
  }

  .print-message {
    min-height: 120px;
    display: block; /* show plain text */
    white-space: pre-wrap; /* preserves line breaks */
    font-size: 14px;
    line-height: 1.6;
    height: auto;
    overflow: visible;
  }
}

.textarea-print {
  min-height: 120px;
}


/* Registration Form Enhancements */
.home .section h4 {
  color: #14213d;
}

.home .section {
  margin-bottom: 2rem;
}

.home .card {
  border-radius: 1rem;
}

.home .card-body h5 {
  color: #14213d;
}

.home .card-body {
  min-height: 115px;
}

.home .carousel-text-box {
.carousel-text-box {
  background: rgba(0, 0, 0, 0.55); /* dark translucent */
  padding: 2rem 2.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  max-width: 700px;
}
}

.home .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);   /* Adjust transparency here */
    z-index: 1;
}
.home .carousel-item {
    position: relative;
}
.home .carousel-caption {
    z-index: 2;  /* Make sure text is above overlay */
}

.home .coming-soon {
    position: relative;
    opacity: 0.45;
    filter: grayscale(100%);
    pointer-events: none;
}

.home .coming-soon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.0rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(0, 0, 0, 0.35);
    text-transform: uppercase;
}

.home .section h4 {
  color: #14213d;
}

.player .section {
  margin-bottom: 2rem;
}

.player .card {
  border-radius: 1rem;
  background: #2c3158;
  border: none;
}

.player .card-body h5 {
  color: #14213d;
}

.player .card-body {
  background: #2c3158;
  padding: 1.25rem;
}

.player .card-header {
  background: #2c3158;
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 14px 18px;
  border-radius: 18px 18px 0 0;
  border-bottom: 3px solid #EC4138; /* red accent */
}

.player .card.h-100 {
  font-size: 1.15rem;
  min-height: 480px;   /* makes them taller */
  padding: 1.5rem;     /* adds more space inside */
}

.player .card a {
  padding: 6px 12px;
}

.league-navbar {
  background-color: #2c3158; /* navy */
  padding: 1rem 1.5rem;
  margin: 0 0 1.5rem 0;
  border-radius: 0;
  border-bottom: 4px solid #e31b23;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.league-navbar .navbar-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0;
  overflow: visible;
  white-space: normal;
}

.league-navbar .nav-link {
  padding: 0.5rem 1.1rem;
}

.custom-dropdown {
  background-color: #2c3158; /* or any color you want */
    z-index: 9999 !important;
}

.custom-dropdown .dropdown-item {
  color: white;
}
.navbar {
  position: relative;
}

.dropdown-menu {
  background-color: #2c3158;
  position: absolute;
  z-index: 1050 !important;
}


.dropdown-item:hover {
  background-color: #f2f2f2;
  color: #000000;
}

.stats-widget {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}

.stat-row:last-child {
  border-bottom: none;
}

.stat-left {
  display: flex;
  flex-direction: column;
}

.stat-title {
  font-weight: 800;
  letter-spacing: 0.05em;
  font-size: 12px;
  color: #333;
}

.stat-player {
  font-size: 16px;
  margin-top: 4px;
}

.stat-player small {
  color: #777;
}

.stat-right {
  font-weight: 800;
  font-size: 18px;
  color: #222;
}

.stats-header {
  background-color: #0a2b5a;   /* Navy */
  color: #ffffff;              /* White text */
  padding: 12px 16px;
  margin: 0;
  font-weight: 700;
  border-bottom: 4px solid #e31b23; /* Red underline */
  border-radius: 8px 8px 0 0;       /* Optional rounded corners */
}


#calendar {
    width: 100%;
    height: 520px;
    margin-top: 25px;
    border-radius: 2px;
    overflow: hidden;
}

@media (max-width: 768px) {
    #calendar {
        height: 70vh !important;
    }
}

/* Taller time slots in agenda/week view */
.fc-slats td {
    height: 52px !important;
}

/* Event content in agenda/week view */
.fc-time-grid-event .fc-content {
    font-size: 0.95rem;
    white-space: normal;
    overflow: visible;
    padding: 3px 5px;
    line-height: 1.35;
}

.fc-time-grid-event .fc-time {
    font-size: 0.85rem;
    font-weight: 700;
}

/* Make sure event boxes don't clip text */
.fc-time-grid-event {
    overflow: visible !important;
}


#calendar .fc-agendaWeek-view .fc-widget-header {
  background-image: linear-gradient(rgba(237,237,237),rgba(231,231,231), rgba(237,237,237)) !important;
}

#calendar .fc-toolbar {
  margin-bottom: 0px;
  padding: 2px;
}

.games-section {
  width: 100%;
}

.section-title {
  text-align: left;
  border-bottom: 2px solid #000;
  padding-bottom: 6px;
  margin-bottom: 14px;
  font-weight: 700;
}

.games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.game-card {
  text-decoration: none;
  color: inherit;
  width: 180px;               /* same width */
  height: 160px;              /* same height */
}

.game-card-inner {
  border: 1px solid #888;
  padding: 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 10px;
}

.game-card-inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-name {
  font-size: calc(10px + 1.2vw);
  margin-bottom: 6px;
  word-wrap: break-word;
}

.game-count {
  font-size: 1rem;
  margin-bottom: 4px;
  color: #444;
}

.no-teams {
  font-size: 1.1rem;
  padding: 10px;
}

.schedule-card {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  margin: 25px auto;
}

.schedule-card-header {
  background: #0a2b5a;   /* Navy */
  padding: 14px 18px;
  border-bottom: 4px solid #e31b23; /* Full-width red line */
}

.schedule-title {
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
}


.schedule-card-body {
  padding: 18px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.schedule-table th {
  background: #f2f2f2;
  font-weight: 700;
  color: #333;
  border-bottom: 2px solid #ddd;
  font-size: 1rem;
  padding: 12px 10px;
}

.schedule-table td {
  border-bottom: 1px solid #eee;
  padding: 13px 10px;
  vertical-align: middle;
  font-size: 1rem;
}

.schedule-table a {
  color: #0a2b5a;
  font-weight: 600;
}

.schedule-table a:hover {
  color: #e31b23;
  text-decoration: none;
}

.fc-toolbar {
  background: rgb(175 33 44);

  color: #fff;
}

.fc-toolbar .fc-button {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.fc-toolbar .fc-button:hover {
  background: #e31b23;
  border-color: #e31b23;
}

.fc-toolbar .fc-center {
  text-align: center;
}

.fc-day-grid-event .fc-content{
    font-size: 1.2em;
    min-height: 12vh;
    overflow: hidden;
    white-space: break-spaces !important;
}

/* Grid Layout */
.standings-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  padding: 25px;
}

/* Card Style */
.standings-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  overflow: hidden;
}

/* Header */
.standings-header {
  background: #0a2b5a;   /* Navy */
  padding: 14px 18px;
  border-bottom: 4px solid #e31b23; /* red underline */
}

.standings-title {
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

/* Table */
.standings-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.standings-table th {
  background: #f2f2f2;
  font-weight: 700;
  color: #333;
  padding: 12px;
  text-align: center;
  font-size: 1rem;
}

.standings-table td {
  font-size: 1rem;
  padding: 11px 12px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.team-cell {
  text-align: left;
}

.standings-table a {
  color: #0a2b5a;
  font-weight: 700;
}

.standings-table a:hover {
  color: #e31b23;
  text-decoration: none;
}

.no-data {
  text-align: center;
  font-weight: 600;
  color: #777;
}

/* Messages/News mini cards */
.mini-cards {
  display: flex;
  gap: 16px;
  padding: 18px;
}

.mini-card {
  flex: 1;
  background: #f9f9f9;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  overflow: hidden;
}

.mini-card-header {
  background: #0a2b5a;
  color: #fff;
  font-weight: 800;
  padding: 10px 12px;
}

.mini-card-body {
  padding: 12px;
  color: #333;
}

/* Responsive */
@media (max-width: 992px) {
  .standings-grid {
    grid-template-columns: 1fr;
  }
  .mini-cards {
    flex-direction: column;
  }
}

@media (min-width: 1200px) {
    .navbar-expand-xl .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
        flex-direction: column;
    }
}

.dropdown-header-li {
    --bs-dropdown-header-color: white;
    color:white;
    font-size: 0.75rem;
    padding: 4px 8px;
    pointer-events: none;
    text-decoration: underline;
    font-weight: bold;
}

.dropdown-menu>li>a {
    color: white;
}

.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
    color: white;
    background-color: #ec4138;

}

/* Submenu container */
.dropdown-submenu {
  color: white;
  position: relative;
}

/* Submenu positioning */
.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  display: none;
}

/* Show submenu on hover (desktop) */
@media (min-width: 992px) {
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}

/* Remove Bootstrap's default ▼ arrow on submenu toggle */
.dropdown-submenu > .dropdown-toggle::after {
  display: none;
}

/* Custom right arrow */
.dropdown-submenu > .dropdown-toggle::before {
  content: "›";
  position: absolute;
  right: 1rem;
  font-size: 2.5rem; /* make it bigger */
  font-weight: bold;
  color: #ffffff;
  transform: translateY(-50%);
  top: 50%;
}

/* Arrow indicator */
.dropdown-submenu > .dropdown-toggle::after {
  content: "›";
  float: right;
  margin-top: 2px;
}


.create-message-page form label {
  font-size: 1.15rem;
}

.create-message-page form input,
.create-message-page form select,
.create-message-page form textarea {
  font-size: 1.15rem;
  padding: 0.45rem 0.85rem;
}

.create-message-page form button[type="submit"] {
  font-size: 1.15rem;
  padding: 0.45rem 1.4rem;
}


.league-form {
  max-width: 1100px;
}

.league-form table {
  font-size: 1.1rem;
}

.league-form th {
  font-weight: 600;
}

/* ------------------------------------------------
   Forms & Files - NO hover effects
-------------------------------------------------- */
.no-hover ul:hover,
.no-hover li:hover,
.no-hover a:hover {
    text-decoration: none !important;
    color: black !important;
    background: transparent !important;
    border: none !important;
}



/* ------------------------------------------------
   Bigger League Boxes + Font
-------------------------------------------------- */
.league-box {
    font-size: 1.5rem;
    padding: 1.5rem !important;
}

/* ------------------------------------------------
   Increase Calendar Font
-------------------------------------------------- */
.calendar-font {
    font-size: 0.8rem;
}


.league-form td {
  padding: 0.75rem;
  vertical-align: middle;
}

.league-form .message-text {
  max-width: 450px;
  white-space: normal;
  word-break: break-word;
}

.league-form-container {
    background: white;
    padding: 25px;
    border: 1px solid #000;
    border-radius: 10px;
}

.page-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.league-form-card {
    border: 1px solid #e2e2e2;
    padding: 20px;
    border-radius: 12px;
    background: #f9f9f9;
    font-size: 1.1rem;
}

/* Increase form font size */
.league-form-card .form-control,
.league-form-card label,
.league-form-card .form-check-label,
.league-form-card .form-text {
    font-size: 1.15rem;
}

/* Make inputs taller too */
.league-form-card .form-control {
    padding: 0.55rem 0.85rem;
}

/* Page container */
.league-page-container {
    padding: 25px;
}

/* Card styling */
.league-table-card {
    background: #fff;
    border: 1px solid #000;
    padding: 20px;
    border-radius: 10px;
}

/* Page title */
.page-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Table styling */
.league-table th,
.league-table td {
    font-size: 1.05rem;
    vertical-align: middle;
}

/* Link styling */
.league-link {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}
.league-link:hover {
    text-decoration: underline;
}

/* Increase font size for the entire league table */
.league-table {
  font-size: 1.05rem;
}

.league-table th,
.league-table td {
  font-size: 1.05rem;
}

/* 1st place */
.points-leader-table tbody tr:nth-child(1) .player-name::before {
  content: "🏆";
}

/* 2nd place */
.points-leader-table tbody tr:nth-child(2) .player-name::before {
  content: "🥈";
}

/* 3rd place */
.points-leader-table tbody tr:nth-child(3) .player-name::before {
  content: "🥉";
}

.points-leader-table tbody tr:first-child td:first-child
, .points-leader-table tbody tr:nth-child(2),
.points-leader-table tbody tr:nth-child(3) {
  font-weight: 700;
  position: relative;
}

.card-text {
  font-size: 1.5rem;
}

.points-leader-table tbody tr:first-child,
 .points-leader-table tbody tr:nth-child(2),
 .points-leader-table tbody tr:nth-child(3){
  background: rgba(236, 65, 56, 0.10);
  border-left: 4px solid #EC4138;
}


.stats-widget .stat-row {
  border-left: 4px solid #EC4138;
}

.stats-widget .stat-row .stat-left .stat-title::before {
  content: "🏆";
  margin-right: 8px;
  position: relative;
  top: 1px;
}

.stats-widget .stat-row:first-child .stat-title {
  font-weight: 700;
}

/* Form container */
.rental-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Row layout */
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

/* Labels */
.label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0b2b5a; /* navy blue */
}

/* Inputs */
.rental-form .form-control{
  width: 100%;
  padding: 2px 4px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  outline: none;
  transition: all 0.2s ease;
}

/* Focus effect */
.form-control:focus {
  border-color: #EC4138; /* red */
  box-shadow: 0 0 0 4px rgba(236, 65, 56, 0.15);
}

/* Errors */
.error {
  color: #EC4138;
  font-size: 13px;
}

/* Submit button */
.btn-primary {
  border: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

/* Form actions */
.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

#timepicker {
  width: 100%;
  padding: 2px 4px;
  border-radius: 12px;
  border: 1px solid #d9d9d9;
  font-size: 16px;
}

.ui-timepicker-wrapper {
    width:35em;
}


.login-card {
  background: #2c335a; /* your navy */
  border-radius: 12px;
  width: 100%;
  max-width: 420px;
}

.login-card input {
  font-size: 1.1rem;
}

.login-card h4 {
  letter-spacing: 0.5px;
}


/* ===== Player Dashboard Accessibility Scaling ===== */
.player-dashboard {
  font-size: 1.25rem; /* overall scale up */
}

/* Card headers */
.player-dashboard .card-header {
  font-size: 1.75rem;
  padding: 1rem 1.35rem;
}

/* Card body spacing */
.player-dashboard .card-body {
  padding: 1.25rem;
}

/* Tables */
.player-dashboard .table {
  font-size: 1.15rem;
}

/* Table cells */
.player-dashboard .table td,
.player-dashboard .table th {
  font-size: 1.50rem;
  padding: 0.9rem 0.75rem;
  vertical-align: middle;
}

/* Links (important for older users) */
.player-dashboard .table-links a {
  font-size: 1.50rem;
  font-weight: 600;
  line-height: 1.6;
}

/* Secondary text */
.player-dashboard sub,
.player-dashboard small {
  font-size: 0.95rem;
  line-height: 1.4;
  display: inline-block;
  margin-top: 4px;
}

/* PDF links */
.player-dashboard .pdf-link {
  font-size: 1.5rem;
}

.player-dashboard a {
  text-decoration-thickness: 2px;
}

/* Make cards breathe more */
.player-dashboard .card {
  border-radius: 12px;
}
.hockey-page {
  font-family: Arial, sans-serif;
  color: #0b2b5a;
}

/* HERO */
.hockey-hero {
  height: 420px;
  background: url('/static/images/hockey-hero.jpg') center/cover no-repeat;
  position: relative;
}

.hockey-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hockey-hero__content {
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hockey-hero__title {
  font-size: 56px;
  margin-bottom: 12px;
}

.hockey-hero__subtitle {
  font-size: 20px;
  margin-bottom: 24px;
}

.hockey-hero__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
}

/* SECTION */
.hockey-section {
  padding: 70px 20px;
  background: white;
}

.hockey-section--alt {
  background: #f8f9fb;
}

.hockey-container {
  max-width: 1100px;
  margin: 0 auto;
}

.hockey-section__title {
  font-size: 34px;
  margin-bottom: 18px;
}

.hockey-section__text {
  font-size: 16px;
  line-height: 1.6;
}

/* CARDS */
.hockey-player-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hockey-card {
  background: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.hockey-card__title {
  font-size: 20px;
  margin-bottom: 10px;
}

.hockey-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hockey-list li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

/* BUTTONS */
.hockey-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
}

.hockey-btn--primary {
  background: #EC4138;
  color: white;
}

.hockey-btn--outline {
  background: white;
  border: 2px solid #0b2b5a;
  color: #0b2b5a;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hockey-player-grid {
    grid-template-columns: 1fr;
  }
  .hockey-hero__title {
    font-size: 38px;
  }
}


.camp-registration {
  padding: 40px 0;
  background: #fff;
}

.camp-registration__container {
  max-width: 1100px;
  margin: 0 auto;
}

.camp-registration__alert {
  background: #f1f5ff;
  border: 1px solid #c3d6ff;
  color: #1a3a7a;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.camp-registration__logo img {
  max-height: 80px;
}

.camp-registration__card {
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
  overflow: hidden;
}

.camp-registration__body {
  padding: 32px;
  background: #fff;
}

.camp-registration__title {
  text-align: center;
  margin-bottom: 8px;
  color: #14213d;
  font-weight: 700;
}

.camp-registration__subtitle {
  text-align: center;
  color: #7a8aa7;
  margin-bottom: 30px;
}

.camp-registration__section {
  margin-bottom: 28px;
}

.camp-registration__section-title {
  color: #0b2a6a;
  font-weight: 700;
  font-size: 16px;
  border-bottom: 2px solid #e6e6e6;
  padding-bottom: 8px;
  margin-bottom: 18px;
}

.camp-registration__hint {
  color: #6b7a95;
  font-size: 14px;
  margin-bottom: 14px;
}

.camp-registration__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.camp-registration__input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d2d6df;
  border-radius: 10px;
  background: #fff;
}

.camp-registration__input:focus {
  outline: none;
  border-color: #d23a3a;
  box-shadow: 0 0 0 3px rgba(210, 58, 58, 0.12);
}

.camp-registration__card-inner {
  background: #f9fbff;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 18px;
}

.camp-registration__subheading {
  margin-bottom: 14px;
  color: #14213d;
  font-weight: 700;
}

.camp-registration__weeks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.camp-registration__check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.camp-registration__check-input {
  width: 18px;
  height: 18px;
}

.camp-registration__check-label {
  font-size: 14px;
  color: #2c3a50;
}

.camp-registration__fees {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.camp-registration__fees-left,
.camp-registration__fees-right {
  width: 50%;
}

.camp-registration__fees p {
  margin: 0;
  padding: 4px 0;
}

.camp-registration__medical-box {
  border: 1px solid #e6e6e6;
  padding: 14px;
  border-radius: 12px;
  margin-bottom: 12px;
  background: #f7f7f7;
}

.camp-registration__label {
  font-weight: 600;
  margin-bottom: 6px;
}

.camp-registration__textarea {
  min-height: 110px;
}

.camp-registration__red {
  color: #d23a3a;
}

.camp-registration__photo-text {
  color: #2c3a50;
  line-height: 1.6;
}

.camp-registration__submit {
  text-align: center;
  margin-top: 18px;
}

.camp-registration__btn {
  background: #d23a3a;
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 12px 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.camp-registration__btn:hover {
  background: #b72f2f;
}

.camp-registration__week-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.camp-registration__check {
  width: 18px;
  height: 18px;
}

.camp-registration__check-label {
  font-size: 16px;
  font-weight: 500;
}

/* ONLY for medical checkboxes */
.camp-registration__medical-check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.camp-registration__medical-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.camp-registration__error-box {
  background: #f8d7da;
  color: #8a1b1b;
  border: 1px solid #f5c6cb;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}


/* =================================================
   HOCKEY PAGE — LAYOUT POLISH (matches Inman style)
================================================= */

/* HERO — make taller + stronger overlay */
.hockey-hero {
  height: 60vh;              /* taller like real site */
  min-height: 420px;
}

.hockey-hero__overlay {
  background: rgba(0, 0, 0, 0.60);  /* darker for contrast */
}

/* Typography closer to sports facility feel */
.hockey-hero__title {
  font-weight: 800;
  letter-spacing: 0.02em;
}

.hockey-hero__subtitle {
  color: #e6e6e6;
}

/* Section spacing — THIS is the biggest visual fix */
.hockey-section {
  padding: 90px 20px;   /* more breathing room */
}

.hockey-section__title {
  font-weight: 800;
  color: #0a2b5a;       /* matches your standings/navy */
}

/* Subtle divider under titles like Inman */
.hockey-section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #EC4138;  /* your red accent */
  margin-top: 10px;
  border-radius: 2px;
}

/* PLAYER CARDS — closer to real facility look */
.hockey-card {
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hover lift like professional sports sites */
.hockey-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* Buttons — align with your red/navy ecosystem */
.hockey-btn--primary {
  background: #EC4138;
  border-color: #EC4138;
}

.hockey-btn--primary:hover {
  background: #c7322a;
}

.hockey-btn--outline {
  border-color: #0a2b5a;
  color: #0a2b5a;
}

.hockey-btn--outline:hover {
  background: #0a2b5a;
  color: #fff;
}

/* Centered CTA sections like real page */
.hockey-center {
  text-align: center;
}

/* Mobile polish */
@media (max-width: 768px) {

  .hockey-section {
    padding: 60px 18px;
  }

  .hockey-hero__title {
    font-size: 34px;
  }

  .hockey-hero__subtitle {
    font-size: 16px;
  }
}

/* ===== Guidelines / Policy Section ===== */

.hockey-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.hockey-policy-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
  border-left: 4px solid #EC4138; /* red accent like standings */
}

.hockey-policy-card h3 {
  margin-bottom: 12px;
  color: #0a2b5a; /* your navy */
  font-weight: 800;
}

.hockey-policy-card p {
  margin: 0;
  line-height: 1.6;
  color: #444;
}

/* Mobile */
@media (max-width: 768px) {
  .hockey-policy-grid {
    grid-template-columns: 1fr;
  }
}

.hockey-hero {
  position: relative;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hockey-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hockey-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* darkens video for text readability */
  z-index: 1;
}

.hockey-hero__content {
  position: relative;
  z-index: 2;
  padding: 1rem;
}


.hockey-info-card {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f4f6f8;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.hockey-info-card__title {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.hockey-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hockey-info-list li {
  padding: 0.4rem 0;
  border-bottom: 1px solid #e2e6ea;
}

.hockey-info-list li:last-child {
  border-bottom: none;
}

.hockey-info-card {
  ul {
    li {
      &:hover {
        background: none;
        border: none;
        color: inherit;
      }
    }
  }
}


.hockey-info-card--center {
  text-align: center;
}

.hockey-info-card--center .hockey-btn {
  display: block;
  margin: 20px auto 0; /* top spacing 20px, centered horizontally */
}

.hockey-info-card a {
  display: flex;
  flex-direction: column;  /* stack children vertically */
  align-items: center;     /* center horizontally */
  text-align: center;      /* keeps text centered */
}

.eliminated-section-header td {
    background-color: #4a4a4a;
    color: #aaa;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-top: 2px solid #333;
}

.eliminated-row td {
    color: #888;
    font-style: italic;
}

.eliminated-row td.team-cell a {
    color: #888;
}