/* Header & Footer Styles */

/* Header flexbox centering */
.header-mobile-optimized {
  align-items: center !important;
}

/* Mobile header green background with white text (on mobile only) */
@media (max-width: 991px) {
  /* Reduce container padding on mobile */
  .container.p-4 {
    padding: 1rem !important;
    padding-top: 1.5rem !important;
  }
  
  .header-mobile-optimized {
    background-color: #20402e !important;
    padding: 14px 16px !important;
    margin-left: -1rem !important;
    margin-right: -1rem !important;
    margin-top: -1.5rem !important;
    margin-bottom: 0 !important;
    padding-bottom: 14px !important;
    width: calc(100% + 2rem) !important;
    border-radius: 0 !important;
    border: none !important;
  }
  
  /* Remove bottom margin from header on mobile */
  header.mb-4, header.mb-md-4 {
    margin-bottom: 0 !important;
  }
  
  .header-mobile-optimized .header-title {
    color: white !important;
    border-bottom: 2px solid #d4a017;
    padding-bottom: 2px;
    display: inline-block;
  }
  
  .header-mobile-optimized .header-subtitle {
    color: white !important;
    opacity: 0.9;
    font-weight: 500 !important;
  }
}

/* Logo vertical alignment - position lower within its container */
.header-mobile-optimized img.site-logo {
  align-self: center !important;
  object-position: center 65% !important;
  object-fit: contain;
  flex-shrink: 0;
}

/* Logo and text link alignment */
.header-mobile-optimized a.d-flex {
  align-items: center !important;
}

/* Text column alignment */
.header-mobile-optimized .d-flex.flex-column {
  align-items: flex-start !important;
  justify-content: center !important;
}

/* Hamburger always right-aligned and vertically centered */
.header-mobile-optimized .navbar-toggler {
  margin-left: auto !important;
  position: relative !important;
  right: auto !important;
  top: auto !important;
  transform: none !important;
  border: none !important;
  padding: 4px !important;
  background: transparent !important;
  align-self: center !important;
}

.header-mobile-optimized .navbar-toggler-icon {
  width: 28px !important;
  height: 28px !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4a017' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Header typography with Oswald font */
.header-title {
  font-family: 'Oswald', sans-serif;
}

.header-subtitle {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}

/* Navigation bar typography */
.navbar-nav.header-nav {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
}

.navbar-nav.header-nav button.nav-link {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* Compact, connected masthead and primary navigation */
.site-header {
  --site-header-green: #20402e;
  --site-header-gold: #d4a017;
}

.site-masthead {
  min-height: 88px;
  padding: 0.5rem 0 !important;
  margin-bottom: 0 !important;
  border-bottom: 0 !important;
}

.site-brand {
  min-width: 0;
}

.site-masthead .site-logo {
  width: 82px;
  height: 72px;
  margin-right: 0.9rem !important;
}

.site-masthead .header-title {
  font-size: clamp(2rem, 3vw, 3rem) !important;
  line-height: 0.95 !important;
}

.site-masthead .header-subtitle {
  margin-top: 0.45rem !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.14em;
}

.site-nav {
  min-height: 54px;
  padding: 0 1rem !important;
  border-radius: 4px !important;
  box-shadow: 0 3px 10px rgba(23, 54, 36, 0.16) !important;
}

.site-nav .header-nav {
  align-items: stretch;
  margin: 0 !important;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.site-nav .nav-item {
  display: flex;
  align-items: stretch;
}

.site-nav .nav-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.75rem 1.25rem !important;
  opacity: 0.84;
  transition: color 160ms ease, opacity 160ms ease, background-color 160ms ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link:focus-visible {
  color: white !important;
  background-color: rgba(255, 255, 255, 0.07);
  opacity: 1;
}

.site-nav .nav-link.active {
  color: white !important;
  opacity: 1;
}

.site-nav .nav-link.active::before {
  content: "";
  position: absolute;
  right: 1.25rem;
  bottom: 0;
  left: 1.25rem;
  height: 3px;
  background: var(--site-header-gold);
}

.site-nav .dropdown-toggle {
  font: inherit;
}

@media (max-width: 991px) {
  .site-masthead {
    min-height: 68px;
    padding: 0.7rem 1rem !important;
  }

  .site-masthead .site-logo {
    width: 54px;
    height: 48px;
    margin-right: 0.55rem !important;
  }

  .site-masthead .header-title {
    font-size: 1.55rem !important;
    border-bottom: 0;
    padding-bottom: 0;
  }

  .site-masthead .header-subtitle {
    margin-top: 0.2rem !important;
    font-size: 0.65rem !important;
    letter-spacing: 0.12em !important;
  }

  .site-nav .nav-item {
    display: block;
  }

  .site-nav .nav-link {
    justify-content: flex-start;
    min-height: 46px;
    padding: 0.7rem 0.9rem !important;
  }

  .site-nav .nav-link.active::before {
    top: 0.7rem;
    right: auto;
    bottom: 0.7rem;
    left: 0;
    width: 3px;
    height: auto;
  }
}

/* Footer styles */
.site-footer {
  border-color: #d0d0d0 !important;
}

.footer-row {
  align-items: initial;
}

.footer-content {
  align-self: flex-start;
}

.footer-title {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
}

.footer-icons {
  display: flex;
  justify-content: flex-end;
  align-self: flex-end;
}

.footer-icons ul {
  gap: 12px;
  margin: 0;
}

.social-link img {
  width: 28px;
  height: 28px;
  transition: transform 0.2s;
}

.social-link:hover img {
  transform: scale(1.1);
}


/* Mobile: ≤ 600px */
@media (max-width: 600px) {
  .header-mobile-optimized img.site-logo {
    display: none !important;
  }

  .header-mobile-optimized .display-6 {
    font-size: 1.4rem !important;
    line-height: 1.2 !important;
    white-space: normal !important;
  }

  .header-mobile-optimized .small {
    font-size: 0.75rem !important;
    letter-spacing: 1.5px !important;
    margin-top: 8px !important;
    display: block !important;
  }

  .footer-icons {
    justify-content: center !important;
  }
}

/* Season inline popover on schedule page */
.season-inline {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.season-inline .season-name {
  font-size: 1rem;
  font-weight: 700;
  color: #20402e;
}

.change-btn {
  font-size: 0.78rem;
  color: #888;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-decoration: underline dotted;
}

.change-btn:hover { color: #20402e; }

.popover-wrap {
  position: relative;
  display: inline-block;
}

.season-popover {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  padding: 0.4rem 0;
  min-width: 140px;
  z-index: 100;
}

.season-popover.open { display: block; }

.season-popover .popover-item {
  display: block;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  color: #333;
  text-decoration: none;
}

.season-popover .popover-item:hover {
  background: #f5f5f5;
  color: #20402e;
}

.season-popover .popover-item.active {
  font-weight: 700;
  color: #20402e;
}

/* Schedule not yet published notice */
.schedule-pending {
  margin-bottom: 1.5rem;
}

/* Schedule alerts — warning banners above the schedule list */
.schedule-alerts {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.schedule-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  background: #fffbeb;
  border: 1px solid #f59e0b;
  border-left: 4px solid #f59e0b;
  border-radius: 6px;
  font-size: 0.875rem;
  color: #78350f;
  line-height: 1.45;
}

.schedule-alert-icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.schedule-alert-body strong {
  font-weight: 600;
}

/* Schedule rows — full-row clickable (option 2) */
.schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.schedule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  margin: 0 -0.75rem;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
  max-width: 560px;
}

/* Widen rows on desktop to use available horizontal space */
@media (min-width: 992px) {
  .schedule-row {
    max-width: 800px;
  }
}

.schedule-row:hover { background: #f0f5f1; }

.schedule-row .row-left {
  display: flex;
  align-items: stretch;
  gap: 0.6rem;
}

.schedule-row .row-date {
  font-size: 0.75rem;
  color: #888;
  min-width: 40px;
  width: 40px;
  flex-shrink: 0;
  text-align: right;
  line-height: 1.25;
  align-self: center;
}

.schedule-row .row-rule {
  width: 1px;
  background: #ddd;
  align-self: stretch;
  flex-shrink: 0;
}

.schedule-row .row-title {
  font-weight: 600;
  color: #20402e;
}

.schedule-row .row-location {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: #888;
  margin-top: 0.1rem;
}

.schedule-row .row-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #888;
  padding-left: 1rem;
  flex-shrink: 0;
}

.schedule-row .row-score {
  font-style: italic;
  color: #555;
}

.schedule-row .row-chevron {
  color: #ccc;
  font-size: 0.9rem;
}

.schedule-row .row-days-away {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #20402e;
  margin-top: 0.15rem;
  opacity: 0.65;
}

.schedule-row .row-main {
}

.schedule-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 0.5rem 3.5rem;
}

.schedule-row-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid #20402e;
  border-radius: 4px;
  color: #20402e;
  font-family: "Oswald", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
}

.schedule-row-action:hover {
  background: #20402e;
  color: #fff;
}

.schedule-row-action .icon {
  width: 0.8rem;
  height: 0.8rem;
}

/* Past events — dimmed when season has a mix of past and upcoming */
.schedule-list li.past .schedule-row {
  opacity: 0.45;
  transition: opacity 0.15s, background 0.15s;
}

.schedule-list li.past .schedule-row:hover {
  opacity: 1;
}

/* "Up next" divider between past and upcoming rows */
.schedule-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #20402e;
  list-style: none;
  pointer-events: none;
}

.schedule-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #20402e;
  opacity: 0.2;
}

/* Multi-provider subscribe line under schedule lists */
.schedule-subscribe {
  font-size: 0.85rem;
  color: #888;
  margin-top: 1.25rem;
  margin-left: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Google Calendar subscribe link under schedule lists */
.schedule-calendar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  margin-top: 1.25rem;
  margin-left: 0.5rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

/* Reduce top gap when there's no schedule list above the button */
.schedule-pending + .schedule-calendar-btn {
  margin-top: 0;
}

.schedule-calendar-btn .icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  vertical-align: -0.125em;
}

/* Event time on schedule index */
.event-time {
  font-size: 0.85rem;
  color: #888;
  margin-left: 0.35rem;
}

/* ── Team schedule: two-column layout with calendar sidebar ─────────── */
.schedule-layout {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}

.schedule-main {
  flex: 1;
  min-width: 0;
}

.schedule-sidebar {
  width: 210px;
  flex-shrink: 0;
}

.schedule-cal-widget {
  background: #20402e;
  border-radius: 10px;
  padding: 1.1rem;
  position: sticky;
  top: 4.5rem;
}

.schedule-cal-widget-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.75rem;
}

.schedule-cal-widget-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.schedule-cal-provider-btn {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  text-decoration: none;
  color: #fff;
  font-size: 0.83rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.15s;
}

.schedule-cal-provider-btn:last-child {
  margin-bottom: 0;
}

.schedule-cal-provider-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.schedule-cal-provider-btn .icon {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}

/* Collapse sidebar to full-width below the schedule on tablet/mobile */
@media (max-width: 991px) {
  .schedule-layout {
    flex-direction: column;
  }

  .schedule-sidebar {
    width: 100%;
  }

  .schedule-cal-widget {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
  }

  .schedule-cal-widget-title {
    width: 100%;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.55);
  }

  .schedule-cal-widget-desc {
    display: block;
  }

  .schedule-cal-provider-btn {
    width: auto;
    flex: 1 1 auto;
    margin-bottom: 0;
    justify-content: center;
  }
}

/* Tablet: 601px - 991px */
@media (min-width: 601px) and (max-width: 991px) {
  .header-mobile-optimized img.site-logo {
    display: none !important;
  }

  .header-mobile-optimized .display-6 {
    font-size: 1.7rem !important;
    line-height: 1.2 !important;
  }

  .header-mobile-optimized .small {
    font-size: 0.85rem !important;
    letter-spacing: 1.5px !important;
    margin-top: 8px !important;
    display: block !important;
  }
}

/* ── Practice block ──────────────────────────────────────────────────── */
.practice-block {
  list-style: none;
}

.practice-block summary {
  list-style: none;
  cursor: pointer;
}

.practice-block summary::-webkit-details-marker { display: none; }

.practice-block-summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  margin: 0 -0.75rem;
  border-radius: 6px;
  color: inherit;
  max-width: 560px;
  transition: background 0.15s;
}

@media (min-width: 992px) {
  .practice-block-summary { max-width: 800px; }
}

.practice-block-summary:hover { background: #f0f5f1; }

details[open] .practice-block-summary { background: #f0f5f1; }

.practice-block-summary .row-left { display: flex; align-items: flex-start; gap: 0.75rem; }
.practice-block-summary .row-right { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: #888; padding-top: 3px; }
.practice-block-summary .row-date { font-size: 0.82rem; color: #888; min-width: 52px; padding-top: 2px; font-style: italic; }
.practice-block-summary .row-title { font-weight: 600; color: #20402e; }
.practice-chevron { color: #ccc; font-size: 0.9rem; transition: transform 0.2s; }
details[open] .practice-chevron { transform: rotate(90deg); }

.practice-detail-list {
  list-style: none;
  padding: 0.25rem 0 0.5rem 1rem;
  margin: 0;
  border-left: 2px solid #e5e7eb;
  margin-left: calc(52px + 0.75rem + 0.75rem);
}

.practice-detail-item {
  padding: 0.35rem 0;
  font-size: 0.85rem;
}

.practice-detail-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: baseline;
}

.practice-days { font-weight: 600; color: #20402e; min-width: 120px; }
.practice-time { color: #555; }
.practice-location { color: #888; font-size: 0.8rem; }
.practice-next { font-size: 0.75rem; color: #aaa; display: block; margin-top: 0.1rem; }

.practice-cancelled {
  list-style: none;
  padding: 0.25rem 0;
  font-size: 0.8rem;
  color: #aaa;
}

/* ── Week at a Glance module ─────────────────────────────────── */
.week-glance {
  margin-bottom: 1.75rem;
}

.week-glance-heading {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin: 0 0 0.6rem;
}

.week-glance-rail {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  /* hide scrollbar but keep scroll behaviour */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.week-glance-rail::-webkit-scrollbar {
  display: none;
}

.week-glance-chip {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 120px;
  flex: 1 1 120px;
  border: 1px solid #dde4df;
  border-radius: 8px;
  padding: 0.55rem 0.7rem 0.5rem;
  background: #f9fbf9;
}

.week-glance-chip.is-today {
  background: #fff8e6;
  border-color: #e0c05a;
  box-shadow: inset 0 0 0 1px rgba(212, 160, 23, 0.25);
}

.wg-day {
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #888;
  margin-bottom: 0.35rem;
}

.week-glance-chip.is-today .wg-day {
  color: #b38010;
}

.wg-event {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 4px;
  padding: 0.22rem 0.3rem;
  margin: 0 -0.3rem;
  transition: background 0.15s;
}

.wg-event:hover {
  background: rgba(32, 64, 46, 0.07);
  color: inherit;
}

.wg-event + .wg-event {
  border-top: 1px dashed #dde4df;
  margin-top: 0.22rem;
  padding-top: 0.25rem;
}

.wg-title {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  color: #20402e;
  line-height: 1.2;
}

.wg-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.4rem;
  margin-top: 0.1rem;
}

.wg-time {
  font-size: 0.73rem;
  color: #888;
}

.wg-team {
  font-size: 0.73rem;
  color: #20402e;
  opacity: 0.55;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wg-empty {
  font-size: 0.85rem;
  color: #ccc;
}

/* ── Schedule view toggle (List / Calendar) ──────────────────── */
.schedule-view-toggle {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.svt-btn {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 0.32rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #dde4df;
  color: #888;
  background: #f9fbf9;
  transition: background 0.15s, color 0.15s;
}

.svt-btn:hover {
  background: #f0f5f1;
  color: #20402e;
}

.svt-btn.active {
  background: #20402e;
  border-color: #20402e;
  color: #fff;
}

/* ── Monthly calendar grid ───────────────────────────────────── */
.cal-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cal-month-title {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 700;
  color: #20402e;
  text-align: center;
  margin: 0;
  letter-spacing: 0.3px;
}

.cal-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #dde4df;
  background: #f9fbf9;
  color: #20402e;
  text-decoration: none;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  transition: background 0.15s;
}

.cal-nav-btn:hover {
  background: #f0f5f1;
  color: #20402e;
}

.cal-grid {
  width: 100%;
  overflow-x: auto;
}

.cal-day-headers {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 3px;
}

.cal-day-hdr {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #888;
  text-align: center;
  padding: 0.25rem 0;
}

.cal-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 3px;
}

.cal-cell {
  min-height: 90px;
  border: 1px solid #e8ecea;
  border-radius: 6px;
  padding: 0.35rem 0.4rem;
  background: #fafbfa;
  overflow: hidden;
}

.cal-cell.out-of-month {
  background: #f4f5f4;
  opacity: 0.45;
}

.cal-cell.is-today {
  background: #fff8e6;
  border-color: #e0c05a;
}

.cal-date-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #aaa;
  text-align: right;
  margin-bottom: 0.3rem;
  line-height: 1;
}

.cal-cell.is-today .cal-date-num {
  color: #b38010;
}

.cal-event {
  display: block;
  text-decoration: none;
  border-radius: 3px;
  padding: 0.18rem 0.3rem;
  margin-bottom: 2px;
  background: #e4ede7;
  overflow: hidden;
  transition: background 0.15s;
}

.cal-event:hover {
  background: #cfe0d5;
}

.cal-event.is-game {
  background: #20402e;
}

.cal-event.is-game:hover {
  background: #2b5940;
}

.cal-event-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #20402e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.25;
}

.cal-event.is-game .cal-event-title {
  color: #fff;
}

.cal-event-team {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #5a8066;
  line-height: 1.15;
}

.cal-event.is-game .cal-event-team {
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 600px) {
  .cal-cell {
    min-height: 60px;
    padding: 0.25rem;
  }

  .cal-event-team {
    display: none;
  }
}
/* ========================================
   CUSTOM UTILITY CSS
   ======================================== */

/* ========== CSS RESET ==========*/
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

hr {
  margin: 1rem 0;
  color: inherit;
  border: 0;
  border-top: 1px solid;
  opacity: 0.25;
}

/* ========== DISPLAY UTILITIES ==========*/
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }
.d-none { display: none !important; }

/* ========== FLEX UTILITIES ==========*/
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }

/* ========== JUSTIFY CONTENT ==========*/
.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }
.justify-content-evenly { justify-content: space-evenly !important; }

/* ========== ALIGN ITEMS ==========*/
.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-center { align-items: center !important; }
.align-items-baseline { align-items: baseline !important; }
.align-items-stretch { align-items: stretch !important; }

/* ========== ALIGN CONTENT ==========*/
.align-content-start { align-content: flex-start !important; }
.align-content-end { align-content: flex-end !important; }
.align-content-center { align-content: center !important; }
.align-content-between { align-content: space-between !important; }
.align-content-around { align-content: space-around !important; }

/* ========== GAP UTILITIES ==========*/
.gap-0 { gap: 0 !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 3rem !important; }

/* ========== MARGIN UTILITIES ==========*/
.m-0 { margin: 0 !important; }
.m-1 { margin: 0.25rem !important; }
.m-2 { margin: 0.5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 3rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.ml-0 { margin-left: 0 !important; }
.ml-1 { margin-left: 0.25rem !important; }
.ml-2 { margin-left: 0.5rem !important; }
.ml-3 { margin-left: 1rem !important; }
.ml-4 { margin-left: 1.5rem !important; }
.ml-5 { margin-left: 3rem !important; }

.mr-0 { margin-right: 0 !important; }
.mr-1 { margin-right: 0.25rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-3 { margin-right: 1rem !important; }
.mr-4 { margin-right: 1.5rem !important; }
.mr-5 { margin-right: 3rem !important; }

.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.mx-1 { margin-left: 0.25rem !important; margin-right: 0.25rem !important; }
.mx-2 { margin-left: 0.5rem !important; margin-right: 0.5rem !important; }
.mx-3 { margin-left: 1rem !important; margin-right: 1rem !important; }
.mx-4 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }
.mx-5 { margin-left: 3rem !important; margin-right: 3rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }

.me-0 { margin-right: 0 !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-4 { margin-right: 1.5rem !important; }
.me-5 { margin-right: 3rem !important; }

.ms-0 { margin-left: 0 !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-5 { margin-left: 3rem !important; }
.ms-auto { margin-left: auto !important; }

/* ========== PADDING UTILITIES ==========*/
.p-0 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

.pe-0 { padding-right: 0 !important; }
.pe-1 { padding-right: 0.25rem !important; }
.pe-2 { padding-right: 0.5rem !important; }
.pe-3 { padding-right: 1rem !important; }
.pe-4 { padding-right: 1.5rem !important; }
.pe-5 { padding-right: 3rem !important; }

.ps-0 { padding-left: 0 !important; }
.ps-1 { padding-left: 0.25rem !important; }
.ps-2 { padding-left: 0.5rem !important; }
.ps-3 { padding-left: 1rem !important; }
.ps-4 { padding-left: 1.5rem !important; }
.ps-5 { padding-left: 3rem !important; }

/* ========== WIDTH/HEIGHT UTILITIES ==========*/
.w-0 { width: 0% !important; }
.w-25 { width: 25% !important; }
.w-50 { width: 50% !important; }
.w-75 { width: 75% !important; }
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }

.h-0 { height: 0 !important; }
.h-25 { height: 25% !important; }
.h-50 { height: 50% !important; }
.h-75 { height: 75% !important; }
.h-100 { height: 100% !important; }
.h-auto { height: auto !important; }

/* ========== BORDER UTILITIES ==========*/
.border { border: 1px solid #dee2e6 !important; }
.border-0 { border: 0 !important; }
.border-top { border-top: 1px solid #dee2e6 !important; }
.border-end { border-right: 1px solid #dee2e6 !important; }
.border-bottom { border-bottom: 1px solid #dee2e6 !important; }
.border-start { border-left: 1px solid #dee2e6 !important; }

.rounded { border-radius: 0.25rem !important; }
.rounded-0 { border-radius: 0 !important; }
.rounded-1 { border-radius: 0.25rem !important; }
.rounded-2 { border-radius: 0.25rem !important; }
.rounded-3 { border-radius: 0.3rem !important; }
.rounded-circle { border-radius: 50% !important; }
.rounded-pill { border-radius: 50rem !important; }

/* ========== SHADOW UTILITIES ==========*/
.shadow-none { box-shadow: none !important; }
.shadow-sm { box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }
.shadow { box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }
.shadow-lg { box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }

/* ========== TEXT UTILITIES ==========*/
.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }
.text-justify { text-align: justify !important; }

.text-white { color: #fff !important; }
.text-dark { color: #212529 !important; }
.text-muted { color: #6c757d !important; }
.text-reset { color: inherit !important; }

.text-decoration-none { text-decoration: none !important; }
.text-decoration-underline { text-decoration: underline !important; }
.text-decoration-line-through { text-decoration: line-through !important; }

.text-uppercase { text-transform: uppercase !important; }
.text-lowercase { text-transform: lowercase !important; }
.text-capitalize { text-transform: capitalize !important; }

.text-secondary { color: #6c757d !important; }
.text-success { color: #198754 !important; }
.text-warning { color: #ffc107 !important; }
.text-danger { color: #dc3545 !important; }
.text-info { color: #0dcaf0 !important; }

/* ========== FONT WEIGHT UTILITIES ==========*/
.fw-light { font-weight: 300 !important; }
.fw-normal { font-weight: 400 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-bold { font-weight: 700 !important; }

/* ========== FONT SIZE UTILITIES ==========*/
.small { font-size: 0.875rem !important; }
.lead { font-size: 1.25rem !important; font-weight: 300 !important; }

/* ========== LINE HEIGHT ==========*/
.lh-1 { line-height: 1 !important; }
.lh-sm { line-height: 1.25 !important; }
.lh-base { line-height: 1.5 !important; }
.lh-lg { line-height: 1.75 !important; }

/* ========== CONTAINER/GRID UTILITIES ==========*/
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

@media (min-width: 576px) {
  .container { max-width: 540px; }
}

@media (min-width: 768px) {
  .container { max-width: 720px; }
}

@media (min-width: 992px) {
  .container { max-width: 960px; }
}

@media (min-width: 1200px) {
  .container { max-width: 1140px; }
}

@media (min-width: 1400px) {
  .container { max-width: 1320px; }
}

.container-fluid {
  width: 100%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  margin-left: auto;
  margin-right: auto;
}

/* ========== ROW/COLUMN GRID ==========*/
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.col {
  flex: 1 0 0%;
}

.order-1 { order: 1 !important; }
.order-2 { order: 2 !important; }

.col-auto { flex: 0 0 auto; width: auto; }
.col-1 { flex: 0 0 auto; width: 8.333333%; }
.col-2 { flex: 0 0 auto; width: 16.666667%; }
.col-3 { flex: 0 0 auto; width: 25%; }
.col-4 { flex: 0 0 auto; width: 33.333333%; }
.col-5 { flex: 0 0 auto; width: 41.666667%; }
.col-6 { flex: 0 0 auto; width: 50%; }
.col-7 { flex: 0 0 auto; width: 58.333333%; }
.col-8 { flex: 0 0 auto; width: 66.666667%; }
.col-9 { flex: 0 0 auto; width: 75%; }
.col-10 { flex: 0 0 auto; width: 83.333333%; }
.col-11 { flex: 0 0 auto; width: 91.666667%; }
.col-12 { flex: 0 0 auto; width: 100%; }

/* ========== RESPONSIVE COLUMNS ==========*/
@media (min-width: 576px) {
  .col-sm-auto { flex: 0 0 auto; width: auto; }
  .col-sm-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-sm-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-sm-3 { flex: 0 0 auto; width: 25%; }
  .col-sm-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-sm-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-sm-6 { flex: 0 0 auto; width: 50%; }
  .col-sm-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-sm-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-sm-9 { flex: 0 0 auto; width: 75%; }
  .col-sm-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-sm-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-sm-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 768px) {
  .col-md-auto { flex: 0 0 auto; width: auto; }
  .col-md-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-md-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-md-3 { flex: 0 0 auto; width: 25%; }
  .col-md-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-md-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-md-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-md-9 { flex: 0 0 auto; width: 75%; }
  .col-md-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-md-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-md-12 { flex: 0 0 auto; width: 100%; }

  .order-md-1 { order: 1 !important; }
  .order-md-2 { order: 2 !important; }

  .text-md-start { text-align: left !important; }
  .text-md-end { text-align: right !important; }
  .text-md-center { text-align: center !important; }

  .mb-md-0 { margin-bottom: 0 !important; }
  .mb-md-1 { margin-bottom: 0.25rem !important; }
  .mb-md-2 { margin-bottom: 0.5rem !important; }
  .mb-md-3 { margin-bottom: 1rem !important; }
  .mb-md-4 { margin-bottom: 1.5rem !important; }
  .mb-md-5 { margin-bottom: 3rem !important; }

  .mt-md-0 { margin-top: 0 !important; }
  .mt-md-1 { margin-top: 0.25rem !important; }
  .mt-md-2 { margin-top: 0.5rem !important; }
  .mt-md-3 { margin-top: 1rem !important; }
  .mt-md-4 { margin-top: 1.5rem !important; }
  .mt-md-5 { margin-top: 3rem !important; }

  .py-md-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
  .py-md-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
  .py-md-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }

  .p-md-5 { padding: 3rem !important; }
  .p-md-4 { padding: 1.5rem !important; }
  .p-md-3 { padding: 1rem !important; }

  .d-md-block { display: block !important; }
  .d-md-none { display: none !important; }
  .d-md-flex { display: flex !important; }
  .d-md-inline-block { display: inline-block !important; }
}

@media (min-width: 992px) {
  .col-lg-auto { flex: 0 0 auto; width: auto; }
  .col-lg-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-lg-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-lg-9 { flex: 0 0 auto; width: 75%; }
  .col-lg-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-lg-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-lg-12 { flex: 0 0 auto; width: 100%; }

  .d-lg-none { display: none !important; }
  .d-lg-block { display: block !important; }
  .d-lg-flex { display: flex !important; }
  .d-lg-inline-block { display: inline-block !important; }

  .me-lg-4 { margin-right: 1.5rem !important; }
  .me-lg-3 { margin-right: 1rem !important; }
  .me-lg-2 { margin-right: 0.5rem !important; }
}

@media (min-width: 1200px) {
  .col-xl-auto { flex: 0 0 auto; width: auto; }
  .col-xl-1 { flex: 0 0 auto; width: 8.333333%; }
  .col-xl-2 { flex: 0 0 auto; width: 16.666667%; }
  .col-xl-3 { flex: 0 0 auto; width: 25%; }
  .col-xl-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-xl-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-xl-6 { flex: 0 0 auto; width: 50%; }
  .col-xl-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-xl-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-xl-9 { flex: 0 0 auto; width: 75%; }
  .col-xl-10 { flex: 0 0 auto; width: 83.333333%; }
  .col-xl-11 { flex: 0 0 auto; width: 91.666667%; }
  .col-xl-12 { flex: 0 0 auto; width: 100%; }
}

/* ========== GRID GAP ==========*/
.g-0 { margin-left: 0; margin-right: 0; }
.g-0 > * { padding-left: 0; padding-right: 0; }

.g-1 { margin-left: -0.125rem; margin-right: -0.125rem; }
.g-1 > * { padding-left: 0.125rem; padding-right: 0.125rem; }

.g-2 { margin-left: -0.25rem; margin-right: -0.25rem; }
.g-2 > * { padding-left: 0.25rem; padding-right: 0.25rem; }

.g-3 { margin-left: -0.5rem; margin-right: -0.5rem; }
.g-3 > * { padding-left: 0.5rem; padding-right: 0.5rem; }

.g-4 { margin-left: -0.75rem; margin-right: -0.75rem; }
.g-4 > * { padding-left: 0.75rem; padding-right: 0.75rem; }

.g-5 { margin-left: -1.5rem; margin-right: -1.5rem; }
.g-5 > * { padding-left: 1.5rem; padding-right: 1.5rem; }

/* ========== BUTTON STYLES ==========*/
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  text-decoration: none;
}

.btn:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

.btn-success:hover {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
}

.btn-success.active {
  background-color: #157347;
  border-color: #146c43;
}

/* ========== FORM STYLES ==========*/
.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-check {
  display: block;
  padding-left: 1.5rem;
}

.form-check-input {
  position: relative;
  margin-left: -1.5rem;
  margin-top: 0.3rem;
}

.form-check-label {
  display: block;
  margin-bottom: 0;
}

.form-switch .form-check-input {
  width: 2rem;
  margin-left: -2.5rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255,255,255,0.5%29'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: left center;
  border-radius: 2rem;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.form-switch .form-check-input:checked {
  background-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255,255,255,1%29'/%3e%3c/svg%3e");
  background-position: right center;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

/* ========== BADGE STYLES ==========*/
.badge {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
}

.badge.bg-success { background-color: #198754; }
.badge.bg-warning { background-color: #ffc107; color: #212529; }
.badge.bg-danger { background-color: #dc3545; }
.badge.bg-info { background-color: #0dcaf0; }

/* ========== BREADCRUMB STYLES ==========*/
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
  list-style: none;
}

.breadcrumb-item {
  display: flex;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item.active {
  color: #6c757d;
}

/* ========== LIST STYLES ==========*/
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* ========== IMAGE STYLES ==========*/
.img-fluid {
  max-width: 100%;
  height: auto;
}

/* ========== CARD STYLES ==========*/
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-text {
  margin-bottom: 0;
}

/* ========== MEDIA OBJECT STYLES ==========*/
.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

/* ========== COLLAPSE/DROPDOWN STYLES ==========*/
.collapse {
  display: none;
}

.collapse.show {
  display: block;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/* Ensure dropdown parent is the positioning context */
.nav-item.dropdown {
  position: relative;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-menu-dark {
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15);
}

.dropdown-menu-dark .dropdown-item {
  color: #fff;
}

.dropdown-menu-dark .dropdown-item:hover,
.dropdown-menu-dark .dropdown-item:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.dropdown-item:hover,
.dropdown-item:focus {
  color: #16213e;
  background-color: #e9ecef;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

/* ========== NAVBAR STYLES ==========*/
.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar-dark {
  background-color: #212529;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  cursor: pointer;
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-collapse {
  display: none;
  flex-basis: 100%;
}

.navbar-collapse.show {
  display: block;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  background: none;
  border: 0;
  transition: color 0.15s ease-in-out;
  cursor: pointer;
}

.nav-link:hover,
.nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.nav-link.active {
  color: #fff;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-item {
  display: block;
}

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

/* ========== POSITION UTILITIES ==========*/
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }
.position-sticky { position: sticky !important; }
.position-static { position: static !important; }

.top-0 { top: 0 !important; }
.top-50 { top: 50% !important; }
.top-100 { top: 100% !important; }
.bottom-0 { bottom: 0 !important; }
.bottom-50 { bottom: 50% !important; }
.bottom-100 { bottom: 100% !important; }
.start-0 { left: 0 !important; }
.start-50 { left: 50% !important; }
.start-100 { left: 100% !important; }
.end-0 { right: 0 !important; }
.end-50 { right: 50% !important; }
.end-100 { right: 100% !important; }

/* ========== OVERFLOW UTILITIES ==========*/
.overflow-auto { overflow: auto !important; }
.overflow-hidden { overflow: hidden !important; }
.overflow-visible { overflow: visible !important; }
.overflow-scroll { overflow: scroll !important; }

/* ========== DISPLAY HEADING UTILITIES ==========*/
.display-1 { font-size: 5rem; font-weight: 300; line-height: 1.2; }
.display-2 { font-size: 4.5rem; font-weight: 300; line-height: 1.2; }
.display-3 { font-size: 4rem; font-weight: 300; line-height: 1.2; }
.display-4 { font-size: 3.5rem; font-weight: 300; line-height: 1.2; }
.display-5 { font-size: 3rem; font-weight: 300; line-height: 1.2; }
.display-6 { font-size: 2.5rem; font-weight: 300; line-height: 1.2; }

/* ========== HEADING CLASSES (style any element as a heading) ==========*/
.h1 { font-size: 2.5rem; font-weight: 500; line-height: 1.2; }
.h2 { font-size: 2rem; font-weight: 500; line-height: 1.2; }
.h3 { font-size: 1.75rem; font-weight: 500; line-height: 1.2; }
.h4 { font-size: 1.5rem; font-weight: 500; line-height: 1.2; }
.h5 { font-size: 1.25rem; font-weight: 500; line-height: 1.2; }
.h6 { font-size: 1rem; font-weight: 500; line-height: 1.2; }

/* ========== FONT STYLE UTILITIES ==========*/
.fst-italic { font-style: italic !important; }
.fst-normal { font-style: normal !important; }

/* ========== ADDITIONAL BORDER UTILITIES ==========*/
.border-1 { border-width: 1px !important; }
.border-2 { border-width: 2px !important; }
.border-3 { border-width: 3px !important; }
.border-4 { border-width: 4px !important; }
.border-5 { border-width: 5px !important; }

.border-warning { border-color: #ffc107 !important; }
.border-success { border-color: #198754 !important; }
.border-danger { border-color: #dc3545 !important; }
.border-dark { border-color: #212529 !important; }
.border-light { border-color: #f8f9fa !important; }

/* ========== ADDITIONAL BACKGROUND UTILITIES ==========*/
.bg-light { background-color: #f8f9fa !important; }
.bg-dark { background-color: #212529 !important; }
.bg-white { background-color: #fff !important; }
.bg-transparent { background-color: transparent !important; }
.bg-success { background-color: #198754 !important; }
.bg-warning { background-color: #ffc107 !important; }
.bg-danger { background-color: #dc3545 !important; }
.bg-info { background-color: #0dcaf0 !important; }

/* ========== TEXT-BG BADGE COMBOS ==========*/
.text-bg-success { color: #fff !important; background-color: #198754 !important; }
.text-bg-secondary { color: #fff !important; background-color: #6c757d !important; }
.text-bg-warning { color: #212529 !important; background-color: #ffc107 !important; }
.text-bg-danger { color: #fff !important; background-color: #dc3545 !important; }
.text-bg-info { color: #212529 !important; background-color: #0dcaf0 !important; }
.text-bg-primary { color: #fff !important; background-color: #0d6efd !important; }

/* ========== TABLE STYLES ==========*/
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  vertical-align: top;
  border-color: #dee2e6;
  border-collapse: collapse;
}

.table > thead {
  vertical-align: bottom;
}

.table > :not(caption) > * > * {
  padding: 0.5rem;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #dee2e6;
}

.table > thead > tr > th {
  font-weight: bold;
  border-bottom: 2px solid #dee2e6;
}

.table > tbody > tr:last-child > td {
  border-bottom: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: rgba(0, 0, 0, 0.05);
}

/* ========== INPUT GROUP STYLES ==========*/
.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}

.input-group > .form-control {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}

.input-group > .form-control:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .btn:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}

/* ========== FORM GROUP STYLES ==========*/
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-select:focus {
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* ========== ALERT STYLES ==========*/
.alert {
  position: relative;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-link {
  font-weight: 700;
}

/* ========== ADDITIONAL SIZING ==========*/
.h-100 { height: 100% !important; }

/* ========== Z-INDEX HELPERS ==========*/
.z-0 { z-index: 0 !important; }
.z-1 { z-index: 1 !important; }
.z-2 { z-index: 2 !important; }
.z-3 { z-index: 3 !important; }

/* ========== INLINE SVG ICONS ==========*/
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  fill: currentColor;
}

.icon-sm { width: 0.875em; height: 0.875em; }
.icon-lg { width: 1.25em; height: 1.25em; }
.icon-xl { width: 1.5em; height: 1.5em; }
.icon-2x { width: 2em; height: 2em; }
/* ========================================
   DARK MODE — automatic via system preference
   Uses @media (prefers-color-scheme: dark)
   ======================================== */

@media (prefers-color-scheme: dark) {

  /* ========== BASE / BODY ========== */
  body {
    color: #e0e0e0;
    background-color: #1a1a1a;
    color-scheme: dark;
  }

  /* ========== GLOBAL LINKS ========== */
  a {
    color: #8ed4a8 !important; /* lighter Lane Green for dark bg */
  }

  a:hover {
    color: #e2b93b !important; /* brighter Lane Gold */
  }

  /* ========== HEADINGS ========== */
  h1 {
    color: #7cc89a !important; /* readable green on dark */
  }

  h2, h3, h4, h5, h6 {
    color: #a0ddb8 !important;
  }

  /* ========== BREADCRUMBS ========== */
  .breadcrumb-eyebrow .breadcrumb-item a {
    color: #8ed4a8 !important;
  }

  .breadcrumb-eyebrow .breadcrumb-item.active {
    color: #999 !important;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    color: #666 !important;
  }

  /* ========== TEXT-LANE-GREEN OVERRIDE ========== */
  body .text-lane-green,
  a.text-lane-green,
  .text-lane-green {
    color: #8ed4a8 !important;
  }

  /* ========== NAV TABS ========== */
  .nav-tabs {
    border-bottom-color: #444;
    background-color: #1a1a1a;
  }

  .nav-tabs .nav-link {
    color: #8ed4a8 !important;
  }

  .nav-tabs .nav-link:hover {
    color: #e2b93b !important;
  }

  .nav-tabs .nav-link.active {
    color: #a0ddb8 !important;
    background-color: transparent;
    border-bottom-color: #a0ddb8;
  }

  /* Team tabs sticky bg */
  .team-tabs-sticky {
    background: #1a1a1a !important;
  }

  /* ========== BRAND UTILITY OVERRIDES ========== */
  .lane-green {
    color: #7cc89a;
  }

  .text-lane-green {
    color: #7cc89a !important;
  }

  /* ========== TEXT UTILITY OVERRIDES ========== */
  .text-dark {
    color: #e0e0e0 !important;
  }

  .text-muted {
    color: #999 !important;
  }

  .text-secondary {
    color: #aaa !important;
  }

  /* ========== BACKGROUND UTILITY OVERRIDES ========== */
  .bg-white {
    background-color: #242424 !important;
  }

  .bg-light {
    background-color: #2a2a2a !important;
  }

  /* ========== BORDER UTILITY OVERRIDES ========== */
  .border {
    border-color: #444 !important;
  }

  .border-top {
    border-color: #444 !important;
  }

  .border-bottom {
    border-color: #444 !important;
  }

  .border-start {
    border-color: #444 !important;
  }

  .border-end {
    border-color: #444 !important;
  }

  .border-light {
    border-color: #444 !important;
  }

  /* ========== HEADER ========== */
  .header-mobile-optimized .header-title {
    color: #7cc89a;
  }

  .header-mobile-optimized .header-subtitle {
    color: #bbb;
  }

  /* Header border-bottom */
  .header-mobile-optimized {
    border-bottom-color: #444 !important;
  }

  /* Desktop header link text */
  .header-mobile-optimized a.text-dark {
    color: #e0e0e0 !important;
  }

  @media (max-width: 991px) {
    .header-mobile-optimized {
      background-color: #142820 !important;
    }

    .header-mobile-optimized .header-title {
      color: white !important;
    }

    .header-mobile-optimized .header-subtitle {
      color: rgba(255, 255, 255, 0.9) !important;
    }
  }

  /* ========== NAVBAR ========== */
  .navbar .dropdown-menu {
    background-color: #1e3528;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }

  .navbar .dropdown-item:hover,
  .navbar .dropdown-item:focus {
    background: rgba(255, 255, 255, 0.08);
  }

  /* Mobile menu overlay */
  @media (max-width: 991px) {
    .navbar-mobile-hidden .navbar-collapse {
      background: linear-gradient(to bottom, #142820 0%, #142820 70%, rgba(20, 40, 32, 0.95) 100%) !important;
    }
  }

  /* ========== FOOTER ========== */
  .site-footer {
    border-color: #444 !important;
  }

  .footer-title {
    color: #7cc89a;
  }

  /* Social icons — invert dark logos for visibility */
  .social-link img {
    filter: brightness(0) invert(1);
    opacity: 0.8;
  }

  .social-link:hover img {
    opacity: 1;
  }

  .social-icon {
    color: #ccc !important;
    opacity: 0.8;
  }

  .social-link:hover .social-icon {
    color: #fff !important;
    opacity: 1;
  }

  /* ========== CONTAINER ========== */
  .container {
    background-color: transparent;
  }

  /* ========== CARDS ========== */
  .card {
    background-color: #242424;
    border-color: #3a3a3a;
  }

  .card-body {
    background-color: transparent;
  }

  /* News Cards */
  .card-news {
    background-color: #242424 !important;
    border-top-color: #3a3a3a !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
  }

  .card-news:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4) !important;
  }

  /* News card text area below the image */
  .card-news .p-4 {
    background-color: #2c2c2c;
  }

  .card-news .p-4 p,
  .card-news .p-4 .card-text,
  .card-news p.card-text {
    color: #e8e8e8 !important;
  }

  .card-news h2 a,
  .card-news h3 a,
  .card-news h4 a {
    color: #7cc89a;
  }

  .card-news h2 a:hover,
  .card-news h3 a:hover,
  .card-news h4 a:hover {
    color: #e2b93b;
  }

  a .card-title {
    color: #7cc89a;
  }

  a:hover .card-title {
    color: #e2b93b;
  }

  .card-text {
    color: #e0e0e0;
  }

  a:hover .card-text {
    color: #f0f0f0;
  }

  .date-badge {
    background: #333;
    color: #bbb;
  }

  a:hover .date-badge {
    background: #d4a017;
    color: white;
  }

  /* ========== SEARCH BAR ========== */
  .search-polished {
    border-color: #444 !important;
    background: #2a2a2a !important;
  }

  .search-polished:focus-within {
    border-color: #8ed4a8 !important;
    background: #1a1a1a !important;
  }

  .search-polished input {
    color: #e0e0e0 !important;
  }

  .search-polished input::placeholder {
    color: #777 !important;
  }

  .search-polished .search-icon {
    color: #777 !important;
  }

  /* ========== CALENDAR WIDGET ========== */
  .schedule-cal-widget {
    background: #1e3528;
    border: 1px solid #2d5a3f;
  }

  .schedule-cal-provider-btn {
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .schedule-cal-provider-btn:hover {
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
  }

  /* ========== BUTTONS ========== */
  .btn-lane {
    background-color: #2d5a3f;
    border-color: #2d5a3f;
    color: white;
  }

  .btn-lane:hover {
    background-color: #1a1a1a;
    color: #7cc89a;
    border-color: #6db88a;
  }

  .btn-lane-outline {
    color: #7cc89a;
    border-color: #6db88a;
  }

  .btn-lane-outline:hover {
    background-color: #2d5a3f;
    color: white;
  }

  /* ========== COACH CARDS ========== */
  .coach-card {
    background: #242424 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  }

  .coach-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45) !important;
  }

  .coach-card-img-placeholder {
    background: #333 !important;
    color: #666 !important;
  }

  .coach-card-name {
    color: #a0ddb8 !important;
  }

  .coach-card-role {
    color: #bbb !important;
  }

  .coach-card-bio {
    color: #d5d5d5 !important;
  }

  .coach-card-cta {
    color: #8ed4a8 !important;
  }

  /* Coach Show Page */
  .coach-role-title {
    color: #7cc89a;
  }

  .coach-team-label {
    color: #999;
  }

  .coach-team-label a {
    color: #999;
  }

  .coach-team-label a:hover {
    color: #7cc89a;
  }

  .coach-placeholder-large {
    background: #333 !important;
    color: #666 !important;
  }

  /* Mini Coach Cards */
  .coach-card-mini {
    background: #242424 !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2) !important;
  }

  .coach-card-mini:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
  }

  .coach-card-mini-placeholder {
    background: #333 !important;
    color: #666 !important;
  }

  .coach-card-mini-name {
    color: #a0ddb8 !important;
  }

  .coach-card-mini-role {
    color: #999 !important;
  }

  /* ========== PLAYER CARDS ========== */
  .player-card {
    background: #242424 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  }

  .player-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45) !important;
  }

  .player-card-img-placeholder {
    background: #333 !important;
    color: #666 !important;
  }

  .player-card-name {
    color: #a0ddb8 !important;
  }

  .player-card-position {
    color: #bbb !important;
  }

  .player-card-details {
    color: #bbb !important;
  }

  .player-card-cta {
    color: #8ed4a8 !important;
  }

  .player-card-number {
    background: #2d5a3f !important;
  }

  .compact-player-card {
    background: #242424 !important;
    border-color: #3b493f !important;
    border-left-color: #4f8a65 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
  }

  .compact-player-card:hover {
    border-color: #587061 !important;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.45) !important;
  }

  .compact-player-number {
    background: #2d5a3f !important;
  }

  .compact-player-name {
    color: #a0ddb8 !important;
  }

  .compact-player-meta {
    color: #bbb !important;
  }

  .compact-player-chevron {
    color: #8b9e91 !important;
  }

  /* Player Show Page */
  .player-hero-name {
    color: #7cc89a;
  }

  .player-hero-name .jersey-num {
    color: #7cc89a;
  }

  .player-stats-row .stat-label {
    color: #999;
  }

  .player-stats-row .stat-value {
    color: #7cc89a;
  }

  .player-stats-row .team-link {
    color: #6db88a;
  }

  .player-callup-note {
    color: #999;
  }

  .player-callup-note a {
    color: #6db88a;
  }

  .player-roster-history h2,
  .player-roster-history-details {
    color: #999;
  }

  .player-roster-history-list,
  .player-roster-history-item {
    border-color: #444;
  }

  .player-roster-history-item,
  .player-roster-history-item:hover {
    color: #7cc89a;
  }

  .player-social-row .social-btn {
    background: #2d5a3f;
  }

  .player-social-row .social-btn:hover {
    background: #3a7353;
  }

  .player-name-title {
    color: #7cc89a;
  }

  .player-position-title {
    color: #bbb;
  }

  .player-jersey-inline {
    color: #7cc89a;
    background: rgba(109, 184, 138, 0.15);
  }

  .player-jersey-badge {
    background: #2d5a3f;
  }

  .player-jersey-badge-small {
    background: #2d5a3f;
  }

  .player-team-label {
    color: #999;
  }

  .player-team-label a {
    color: #999;
  }

  .player-team-label a:hover {
    color: #7cc89a;
  }

  .player-stat-box {
    background: #2a2a2a;
  }

  .player-stat-label {
    color: #999;
  }

  .player-stat-value {
    color: #7cc89a;
  }

  .player-commit {
    color: #7cc89a;
  }

  .player-commit-label {
    color: #999;
  }

  .player-commit-school {
    color: #7cc89a;
  }

  .player-position-abbrev {
    color: #999;
  }

  .player-placeholder-large {
    background: #333;
    color: #666;
  }

  .player-update-notification {
    background: #2a2a2a !important;
    color: #d5d5d5 !important;
    border-left-color: #d4a017 !important;
  }

  .player-update-notification i {
    color: #d4a017 !important;
  }

  .player-update-notification a {
    color: #8ed4a8 !important;
  }

  /* ========== EVENT CARDS ========== */
  .event-date-badge {
    background: #2a2a2a !important;
  }

  .event-date-day {
    color: #7cc89a;
  }

  .event-date-month {
    color: #999;
  }

  .event-title {
    color: #e0e0e0;
  }

  .event-meta {
    color: #bbb;
  }

  .event-meta-secondary {
    color: #999;
  }

  .event-score-badge {
    /* Keep original styling, just adjust if needed */
  }

  /* ========== SPONSOR CARDS ========== */
  .sponsor-card {
    background-color: #242424;
    border-top-color: #3a3a3a;
  }

  .sponsor-description {
    color: #bbb;
  }

  /* ========== PAGINATION ========== */
  body .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.125rem;
    width: fit-content;
    max-width: 100%;
    padding: 0.35rem;
    background-color: #242424;
    border: 1px solid #3a3a3a;
  }

  body .pagination > span {
    color: #777;
  }

  body .pagination a,
  body .pagination span.current,
  body .pagination span.gap {
    display: block;
    float: none;
    min-width: 2.25rem;
    padding: 0 0.65rem;
    line-height: 2.25rem;
    text-align: center;
    background-color: transparent;
    color: #d5d5d5;
    border-radius: 2px;
  }

  body .pagination a:hover,
  body .pagination a:focus-visible {
    background-color: #315440;
    color: #fff !important;
  }

  body .pagination a:focus-visible {
    outline: 2px solid #8ed4a8;
    outline-offset: 1px;
  }

  body .pagination span.current {
    background-color: #d4a017;
    color: #17271e;
    font-weight: 700;
  }

  /* ========== SEASON POPOVER ========== */
  .season-inline .season-name {
    color: #8ed4a8;
  }

  .change-btn {
    color: #bbb;
  }

  .change-btn:hover,
  .change-btn:focus-visible {
    color: #8ed4a8;
  }

  .change-btn:focus-visible {
    outline: 2px solid #8ed4a8;
    outline-offset: 3px;
  }

  .season-popover {
    background: #242424;
    border-color: #444;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  }

  .season-popover .popover-item {
    color: #d5d5d5;
  }

  .season-popover .popover-item:hover,
  .season-popover .popover-item:focus-visible {
    background: #315440;
    color: #fff !important;
    outline: none;
  }

  .season-popover .popover-item.active {
    background: rgba(212, 160, 23, 0.14);
    color: #f1c84b !important;
  }

  @media (max-width: 575px) {
    body .pagination > .first,
    body .pagination > .last {
      display: none;
    }
  }

  /* ========== TABLES ========== */
  .table {
    color: #e0e0e0;
    border-color: #444;
  }

  .table > :not(caption) > * > * {
    border-bottom-color: #444;
  }

  .table > thead > tr > th {
    border-bottom-color: #555;
  }

  .table-striped > tbody > tr:nth-of-type(odd) > * {
    background-color: rgba(255, 255, 255, 0.04);
  }

  /* ========== FORMS ========== */
  .form-control {
    color: #e0e0e0;
    background-color: #2a2a2a;
    border-color: #444;
  }

  .form-control:focus {
    color: #e0e0e0;
    background-color: #1a1a1a;
    border-color: #6db88a;
    box-shadow: 0 0 0 0.2rem rgba(109, 184, 138, 0.25);
  }

  .form-select {
    color: #e0e0e0;
    background-color: #2a2a2a;
    border-color: #444;
  }

  .form-select:focus {
    border-color: #6db88a;
    box-shadow: 0 0 0 0.2rem rgba(109, 184, 138, 0.25);
  }

  /* ========== DROPDOWN ========== */
  .dropdown-menu {
    background-color: #2a2a2a;
    border-color: #444;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }

  .dropdown-item {
    color: #e0e0e0;
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    color: #fff;
    background-color: #333;
  }

  /* ========== ALERTS ========== */
  .alert {
    background-color: #2a2a2a;
    border-color: #444;
    color: #e0e0e0;
  }

  /* ========== BADGES ========== */
  .badge.bg-warning {
    background-color: #b8860b !important;
    color: #fff !important;
  }

  /* ========== P TAG ========== */
  p {
    color: #ccc;
  }

  /* ========== HR ========== */
  hr {
    border-top-color: #444;
  }

  /* ========== HERO SECTIONS ========== */
  /* Hero sections with overlays — mostly fine since they use absolute overlays.
     The no-image variant needs adjustment: */
  .hero-no-image-bg {
    background-color: #142820;
  }

  /* ========== TEAM CARD PHOTO ========== */
  .team-card-photo {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  }

  .team-card-photo:hover,
  a:hover .team-card-photo {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.55);
  }

  .btn-team-photo {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
  }

  .btn-team-photo:hover,
  a:hover .btn-team-photo {
    background: #d4a017;
    border-color: #d4a017;
    color: white;
  }

  /* ========== SHADOW ADJUSTMENTS ========== */
  .shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2) !important;
  }

  .shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3) !important;
  }

  .shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.4) !important;
  }

  /* ========== MOBILE OVERRIDES ========== */
  @media (max-width: 767px) {
    a:hover .card-title {
      color: #7cc89a !important;
    }

    a:hover .date-badge {
      background: #333 !important;
      color: #bbb !important;
    }

    .card-news {
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    }

    .card-news:hover {
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3) !important;
    }
  }

  /* ========== SIDEBAR RECAP / SCHEDULE ========== */
  /* The off-season recap panel uses .bg-light.rounded */
  .sticky-sidebar .bg-light,
  .sticky-sidebar .p-4 {
    background-color: #242424 !important;
    border-radius: 8px;
  }

  /* Team name links inside recap (uses .text-dark inline) */
  .sticky-sidebar h5 a.text-dark,
  .sticky-sidebar .text-dark {
    color: #7cc89a !important;
  }

  /* Recap heading borders */
  .sticky-sidebar h5.border-bottom {
    border-bottom-color: #444 !important;
  }

  /* Score badges — improve contrast */
  .text-bg-success {
    background-color: #1a7a48 !important;
    color: #fff !important;
  }

  .text-bg-secondary {
    background-color: #4a4a55 !important;
    color: #ddd !important;
  }

  /* Event dates in recap */
  .sticky-sidebar .text-muted {
    color: #888 !important;
  }

  /* Event links in recap — brighten */
  .sticky-sidebar a {
    color: #6db88a;
  }

  .sticky-sidebar a:hover {
    color: #e2b93b;
  }

  /* Clickable card link text in dark mode */
  a.text-dark.clickable-card,
  a.clickable-card {
    color: #e0e0e0 !important;
  }

  /* Section headings ("2025 Season", "Latest News") */
  h3.border-bottom {
    border-bottom-color: #d4a017 !important;
  }

  /* ========== IMAGES: color-scheme hint ========== */
  /* Let the browser know we're in dark mode for native elements */
  :root {
    color-scheme: dark;
  }

  /* ========== SELECTION COLOR ========== */
  ::selection {
    background: rgba(109, 184, 138, 0.3);
    color: #fff;
  }

  /* ========== SCHEDULE / EVENT LISTING ========== */
  .schedule-row .row-rule {
    background: #333;
  }

  .schedule-row .row-title {
    color: #d4e8dd;
  }

  .schedule-row:hover {
    background: #2a3b30;
  }

  .schedule-divider {
    color: #7cc89a;
  }

  .schedule-divider::after {
    background: #7cc89a;
  }

  .schedule-alert {
    background: #2a1f00;
    border-color: #b45309;
    color: #fde68a;
  }

  /* ── Week at a Glance ── */
  .week-glance-heading {
    color: #5a7a68;
  }

  .week-glance-chip {
    background: #1e2e26;
    border-color: #334d3e;
  }

  .week-glance-chip.is-today {
    background: #2c2b1a;
    border-color: #7a6020;
    box-shadow: inset 0 0 0 1px rgba(212, 160, 23, 0.2);
  }

  .wg-day {
    color: #5a7a68;
  }

  .week-glance-chip.is-today .wg-day {
    color: #c8a43c;
  }

  .wg-event:hover {
    background: rgba(255, 255, 255, 0.06);
  }

  .wg-event + .wg-event {
    border-top-color: #334d3e;
  }

  .wg-title {
    color: #c0d9ca;
  }

  .wg-time {
    color: #5a7a68;
  }

  .wg-team {
    color: #7cc89a;
    opacity: 0.7;
  }

  .wg-empty {
    color: #3d5c4a;
  }

  /* ── View toggle ── */
  .svt-btn {
    background: #1a2b22;
    border-color: #334d3e;
    color: #5a7a68;
  }

  .svt-btn:hover {
    background: #243a2d;
    color: #c0d9ca;
  }

  .svt-btn.active {
    background: #3b7052;
    border-color: #3b7052;
    color: #fff;
  }

  /* ── Calendar grid ── */
  .cal-month-title {
    color: #c0d9ca;
  }

  .cal-nav-btn {
    background: #1a2b22;
    border-color: #334d3e;
    color: #c0d9ca;
  }

  .cal-nav-btn:hover {
    background: #243a2d;
  }

  .cal-day-hdr {
    color: #5a7a68;
  }

  .cal-cell {
    background: #1a2b22;
    border-color: #273d30;
  }

  .cal-cell.out-of-month {
    background: #161f1a;
  }

  .cal-cell.is-today {
    background: #2c2b1a;
    border-color: #7a6020;
  }

  .cal-date-num {
    color: #3d5c4a;
  }

  .cal-cell.is-today .cal-date-num {
    color: #c8a43c;
  }

  .cal-event {
    background: #243a2d;
  }

  .cal-event:hover {
    background: #2e4e3a;
  }

  .cal-event.is-game {
    background: #3b7052;
  }

  .cal-event.is-game:hover {
    background: #4a8a68;
  }

  .cal-event-title {
    color: #c0d9ca;
  }

  .cal-event.is-game .cal-event-title {
    color: #fff;
  }

  .cal-event-team {
    color: #5a7a68;
  }

  .cal-event.is-game .cal-event-team {
    color: rgba(255, 255, 255, 0.55);
  }

  /* ========== BOOSTER CLUB PAGE ========== */
  /* Note: booster + donate styles are in require_self (compiles after this file)
     so background/border overrides need !important to win the cascade. */
  .booster-section-number {
    color: #3a3a3a;
  }

  .booster-impact-item {
    background: #252525 !important;
    border-left-color: #d4a017;
    color: #c8c8c8;
  }

  .booster-impact-item strong {
    color: #8ed4a8;
  }

  .board-open-positions {
    background: #1e1a0e !important;
    border-color: #5a4a10 !important;
  }

  .board-open-positions h3 {
    color: #d4a017 !important;
  }

  .board-open-positions p,
  .board-open-positions li {
    color: #b0b0b0;
  }

  /* ========== DONATE PAGE ========== */
  .donate-copy p {
    color: #c8c8c8 !important;
  }

  .donate-list {
    color: #c8c8c8 !important;
  }

  .donate-quote {
    color: #8ed4a8 !important;
  }

  .donate-stat {
    background: #252525 !important;
    border-left-color: #20402e;
  }

  .donate-stat-num {
    color: #8ed4a8 !important;
  }

  .donate-stat-lbl {
    color: #888 !important;
  }

  .donate-page-meter {
    border-bottom-color: #333 !important;
  }

  .donate-form-col {
    background: #242424 !important;
    border-color: #333 !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.4) !important;
  }

  .donate-form-heading {
    color: #8ed4a8 !important;
  }

  .donate-form-subhead {
    color: #999 !important;
  }

  .donate-form-cta-header {
    border-bottom-color: #333 !important;
  }

  .donate-tax-note {
    color: #666 !important;
  }

  .donate-method-card {
    background: #242424 !important;
    border-color: #333 !important;
  }

  .donate-method-logo-wrap {
    border-bottom-color: #333 !important;
  }

  .donate-method-card p {
    color: #c8c8c8 !important;
  }

  .donate-method-note {
    color: #777 !important;
  }

  .donate-address {
    background: #252525 !important;
    color: #c8c8c8;
  }

  .donate-logo-check {
    filter: invert(1);
    opacity: 0.75 !important;
  }

}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *
 * NOTE: This manifest includes ONLY public-facing styles.
 * Admin-specific styles are loaded separately via the admin layout (admin.css).




 */

/* Newsletter Modal */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

.newsletter-dialog {
  border: none;
  border-radius: 0;
  padding: 0;
  width: 90vw;
  max-width: 480px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.newsletter-dialog::backdrop {
  background: rgba(0, 0, 0, 0.55);
}

.newsletter-dialog-header {
  background-color: #20402e;
  color: white;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.newsletter-dialog-header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

.newsletter-dialog-close {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  opacity: 0.8;
}

.newsletter-dialog-close:hover {
  opacity: 1;
}

.newsletter-dialog-body {
  padding: 1.5rem;
}

.newsletter-dialog-body .form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.newsletter-dialog-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  min-height: 1.25rem;
}

.newsletter-dialog-success {
  text-align: center;
  padding: 1rem 0;
}

.newsletter-dialog-success p {
  margin-bottom: 1.5rem;
  color: #444;
}

.newsletter-dialog-social-label {
  color: #666;
  margin-bottom: 0.5rem;
}

.newsletter-dialog-success ul {
  justify-content: center;
  gap: 1rem;
}

.newsletter-dialog-success .icon-2x {
  width: 2em;
  height: 2em;
}

/* Global Links */
a {
  color: #20402e; /* Lane Green */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: #d4a017; /* Lane Gold */
}

/* Typography Overrides */
p {
 font-size: 1.1em;
 line-height: 1.6;
}

/* Breadcrumb Eyebrow Style */
.breadcrumb-eyebrow {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

/* Tighter breadcrumb spacing on mobile */
@media (max-width: 767px) {
  .breadcrumb-eyebrow {
    font-size: 0.7rem;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
  }
}
.breadcrumb-eyebrow .breadcrumb-item a {
  color: #20402e; /* Lane Green */
  text-decoration: none;
  font-weight: 600;
}
.breadcrumb-eyebrow .breadcrumb-item.active {
  color: #666;
}

/* Custom Nav Tabs */
.nav-tabs {
  border-bottom: 2px solid #ddd;
  margin-bottom: 12px;
}

.nav-tabs .nav-link {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  color: #20402e; /* Lane Green */
  font-weight: 500;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 10px 20px;
  font-size: 1.1rem;
}

.nav-tabs .nav-link:hover {
  border-color: transparent;
  color: #d4a017; /* Lane Gold */
}

.nav-tabs .nav-link.active {
  color: #20402e;
  background-color: transparent;
  border-bottom: 3px solid #20402e; /* Green underline for active */
  font-weight: 700;
}

/* Team Header Bar: Option B — stacked, tight */
.team-header-bar {
  margin-top: -1.5rem;
  margin-bottom: 0;
}

.team-header-bar .team-header-title {
  margin-bottom: 4px;
  padding-bottom: 5px;
  border-bottom: 4px solid #d4a017;
  font-size: 1.8rem;
}

/* Mobile adjustments for team header */
@media (max-width: 767px) {
  .team-header-bar {
    margin-top: -0.75rem;
  }
  
  .team-header-bar .team-header-title {
    font-size: 1.5rem;
    padding-bottom: 4px;
    border-bottom-width: 3px;
  }
}

/* Tighter tabs after team header */
.team-header-bar + turbo-frame .nav-tabs {
  margin-bottom: 16px;
}

.team-header-bar + turbo-frame .nav-tabs .nav-link {
  padding: 8px 16px;
  font-size: 0.95rem;
}

/* Mobile tab adjustments */
@media (max-width: 767px) {
  .team-header-bar + turbo-frame .nav-tabs {
    margin-bottom: 12px;
  }
  
  .team-header-bar + turbo-frame .nav-tabs .nav-link {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}

/* Sticky team tabs */
.team-tabs-sticky {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 50;
  padding-top: 4px;
}

/* Mobile sticky tabs adjustment */
@media (max-width: 767px) {
  .team-tabs-sticky {
    padding-top: 2px;
  }
}

/* Polished search bar */
.search-polished {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  background: #f8f8f8;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.search-polished:focus-within {
  border-color: #20402e;
  background: #fff;
}
.search-polished .search-icon {
  padding: 0 0 0 10px;
  color: #bbb;
  display: flex;
  align-items: center;
  font-size: 0.85rem;
}
.search-polished input {
  flex: 1;
  padding: 8px 8px;
  border: none;
  font-size: 0.85rem;
  outline: none;
  background: transparent;
}
.search-polished input::placeholder {
  color: #bbb;
  font-size: 0.82rem;
}
.search-polished button {
  padding: 8px 14px;
  background: #20402e;
  color: #fff;
  border: none;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.search-polished button:hover {
  background: #2d5a3f;
}

h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #20402e; /* Lane Green */
  margin-top: 16px;
  margin-bottom: 25px;
  padding-bottom: 5px;
  border-bottom: 4px solid #d4a017; /* Lane Gold */
  display: inline-block; /* Border matches text width */
}

@media only screen and (min-width: 992px) {
  h1 {
    margin-top: 12px;
  }
}

h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  color: #20402e;
  font-weight: 700;
  margin-top: 20px;
}

#logo {
 img {
   width: 10%;
   min-width: 150px;
 }
}

#social {
 img {
   width: 40px;
 }
}

@media only screen and (max-width: 767px) {
 #social {
   img {
     width: 30px;
   }
 }
}

.pagination a, .pagination span.current, .pagination span.gap {
  float: left;
  padding: 0 6px;
  line-height: 35px;
  text-decoration: none;
  background-color: white;
  /* border: 1px solid #ddd; */
  border-left-width: 0;
  font-size:1.2rem;
}

/* Lane Layout Colors */
.lane-green { color: #20402e; }
.bg-lane-green { background-color: #20402e; }
.lane-gold { color: #d4a017; } 
.bg-lane-gold { background-color: #d4a017; }

.pagination {
  /* border-left: 1px solid #ddd; */
  .first{
    padding : 0;
    float: none;
    border: none;
  }
  .prev {
    padding : 0;
    float: none;
    border: none;
  }
  .page {
    padding : 0;
    float: none;
    border: none;
  }
  .next {
    padding : 0;
    float: none;
    border: none;
  }
  .last {
    padding : 0;
    float: none;
    border: none;
  }
}

/* Custom Lane Tech Colors */
.text-lane-green { color: #20402e !important; }
.bg-lane-green { background-color: #20402e !important; }
.text-lane-gold { color: #d4a017 !important; }
.bg-lane-gold { background-color: #d4a017 !important; }

/* Varsity Button Styles */
.btn-lane {
    background-color: #20402e;
    color: white;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #20402e;
    border-radius: 0;
    padding: 10px 25px;
    transition: all 0.3s;
}
.btn-lane:hover {
    background-color: white;
    color: #20402e;
    border-color: #20402e;
}

.btn-lane-outline {
    background-color: transparent;
    color: #20402e;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #20402e;
    border-radius: 0;
    padding: 10px 25px;
    transition: all 0.3s;
}
.btn-lane-outline:hover {
    background-color: #20402e;
    color: white;
}

/* Responsive button width */
@media (min-width: 768px) {
    .flex-md-row {
        flex-direction: row !important;
    }
    
    .btn-lane,
    .btn-lane-outline {
        width: auto !important;
        flex: 0 0 auto !important;
    }
}

/* Medium screen adjustments for team cards */
@media (min-width: 768px) and (max-width: 991px) {
    .team-name-overlay {
        font-size: 1.5rem !important;
    }
    .team-record-badge {
        font-size: 0.9rem !important;
        padding: 0.3rem 0.75rem !important;
    }
}

@media (max-width: 767px) {
    .flex-column .btn-lane,
    .flex-column .btn-lane-outline {
        width: 100% !important;
    }
}

/* Footer Social Links */
.social-link:hover img,
.social-link:hover .social-icon {
    transform: scale(1.15);
}

.social-icon {
    width: 30px;
    height: 30px;
    color: #555;
    transition: transform 0.2s;
}

/* Team Card with Photo Background */
.home-next-games {
    margin-top: -1.5rem;
    padding: 0.8rem 0 0.75rem;
    border-bottom: 1px solid #dee2e6;
}

.home-next-games + .hero-image-bg,
.home-next-games + .hero-no-image-bg {
    margin-top: 0;
}

.home-next-games-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 0.125rem 0.5rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.home-next-games-heading h2 {
    margin: 0;
    color: #20402e;
    font-size: 1.05rem;
    font-weight: 700;
}

.home-next-games-all {
    color: #315943;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
}

.home-next-games-all:hover {
    color: #20402e;
}

.home-next-games-scroll {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
}

.home-next-game {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: 3.25rem minmax(0, 1fr);
    grid-template-rows: 1.1rem 2rem 2.1rem 2rem;
    align-items: center;
    column-gap: 0.9rem;
    row-gap: 0.5rem;
    padding: 0.85rem 0.9rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background: #fff;
    transition: border-color 0.15s ease;
}

.home-next-game:hover {
    border-color: #c7d1ca;
}

.home-next-game-date {
    display: flex;
    flex-direction: column;
    grid-row: 1 / 5;
    align-items: center;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
    text-align: center;
}

.home-next-game-weekday,
.home-next-game-month {
    color: #315943;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.home-next-game-weekday {
    margin-bottom: 0.1rem;
    font-size: 0.7rem;
}

.home-next-game-day {
    margin-top: 0.15rem;
    color: #173624;
    font-size: 2.25rem;
    font-weight: 700;
}

.home-next-game-details {
    display: contents;
}

.home-next-game-team {
    grid-column: 2;
    align-self: start;
    color: #20402e;
    font-family: 'Oswald', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.home-next-game-opponent {
    display: block;
    grid-column: 2;
    align-self: start;
    overflow: hidden;
    margin-top: -0.1rem;
    color: #17251d;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.15;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-next-game-opponent:hover {
    color: #315943;
}

.home-next-game-opponent::after {
    position: absolute;
    inset: 0;
    content: "";
}

.home-next-game-meta {
    grid-column: 2;
    align-self: start;
    overflow: hidden;
    margin-top: 0.1rem;
    color: #667069;
    font-size: 0.825rem;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-next-game-actions {
    display: flex;
    grid-column: 2;
    grid-row: 4;
    align-items: center;
    justify-content: flex-start;
}

.home-next-game-tickets {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 3px;
    background: #d4a017;
    color: #173624;
    padding: 0.45rem 0.65rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-next-game-tickets svg {
    width: 0.875rem;
    height: 0.875rem;
}

.home-next-game-tickets:hover {
    background: #b98b10;
    color: #173624;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .home-next-game {
        column-gap: 0.75rem;
        padding-inline: 0.75rem;
    }

    .home-next-game-meta {
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) {
    .home-next-games + .hero-section {
        margin-top: 0 !important;
    }

    .home-next-games-scroll {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.375rem;
    }

    .home-next-game {
        width: 100%;
        min-width: 0;
        grid-template-columns: 2.65rem minmax(0, 1fr) auto;
        column-gap: 0.75rem;
        row-gap: 0.2rem;
        padding: 0.5rem 0.6rem;
        grid-template-rows: auto auto auto auto;
    }

    .home-next-game-details {
        display: contents;
    }

    .home-next-game-team,
    .home-next-game-opponent {
        grid-column: 2;
    }

    .home-next-game-meta {
        grid-column: 2;
        white-space: nowrap;
    }

    .home-next-game-actions {
        grid-column: 2;
        grid-row: 4;
        justify-content: flex-start;
    }

    .home-next-game-actions {
        align-self: center;
    }

    .home-next-game-team {
        font-size: 0.8rem;
    }

    .home-next-game-weekday {
        margin-bottom: 0.1rem;
        font-size: 0.65rem;
    }

    .home-next-game-month {
        font-size: 0.75rem;
    }

    .home-next-game-day {
        font-size: 1.75rem;
    }

    .home-next-game-opponent {
        margin-top: 0;
        font-size: 1.3rem;
    }

    .home-next-game-meta {
        margin-top: 0;
        font-size: 0.75rem;
    }

    .home-next-game-tickets {
        padding: 0.45rem 0.55rem;
        font-size: 0.75rem;
    }

    .home-next-game-tickets svg {
        width: 0.8rem;
        height: 0.8rem;
    }
}

@media (prefers-color-scheme: dark) {
    body:not([data-theme="light"]) .home-next-games {
        border-bottom-color: #444;
    }

    body:not([data-theme="light"]) .home-next-games-heading h2,
    body:not([data-theme="light"]) .home-next-games-all,
    body:not([data-theme="light"]) .home-next-game-team {
        color: #d4a017;
    }

    body:not([data-theme="light"]) .home-next-game {
        border-color: #444;
        background: #242424;
    }

    body:not([data-theme="light"]) .home-next-game:hover {
        border-color: #666;
    }

    body:not([data-theme="light"]) .home-next-game-month,
    body:not([data-theme="light"]) .home-next-game-meta {
        color: #aaa;
    }

    body:not([data-theme="light"]) .home-next-game-day,
    body:not([data-theme="light"]) .home-next-game-opponent {
        color: #f0f0f0;
    }
}

body[data-theme="dark"] .home-next-games {
    border-bottom-color: #444;
}

body[data-theme="dark"] .home-next-games-heading h2,
body[data-theme="dark"] .home-next-games-all,
body[data-theme="dark"] .home-next-game-team {
    color: #d4a017;
}

body[data-theme="dark"] .home-next-game {
    border-color: #444;
    background: #242424;
}

body[data-theme="dark"] .home-next-game:hover {
    border-color: #666;
}

body[data-theme="dark"] .home-next-game-month,
body[data-theme="dark"] .home-next-game-meta {
    color: #aaa;
}

body[data-theme="dark"] .home-next-game-day,
body[data-theme="dark"] .home-next-game-opponent {
    color: #f0f0f0;
}

.team-card-photo {
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    background-size: cover;
    background-position: center 35%;
}
.team-card-photo:hover,
a:hover .team-card-photo {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.team-card-photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(32, 64, 46, 0.7) 0%, rgba(32, 64, 46, 0.85) 100%);
    z-index: 1;
}
.team-card-photo-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}
.team-card-photo .team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.team-name-overlay {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.team-record-badge {
    background: #d4a017;
    color: #333;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.btn-team-photo {
    background: white;
    color: #20402e;
    border: 2px solid white;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.75rem;
    text-decoration: none;
    display: block;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s;
}
.btn-team-photo:hover,
a:hover .btn-team-photo {
    background: #d4a017;
    border-color: #d4a017;
    color: white;
}

/* News Card Styles */
.card-news {
    border: none;
    border-top: 1px solid #e0e0e0;
    border-left: 4px solid #d4a017;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: white;
    display: flex;
    flex-direction: column;
}
.card-news:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
/* Ensure links inside card titles behave nicely */
.card-news h2 a, .card-news h3 a, .card-news h4 a { 
    color: #20402e; 
    text-decoration: none;
    transition: color 0.3s ease;
}
.card-news h2 a:hover, .card-news h3 a:hover, .card-news h4 a:hover { 
    color: #d4a017; 
}

/* Card title with line clamping and hover effect */
.card-title {
    font-size: 1.3rem !important;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

a .card-title {
    color: #20402e;
}

a:hover .card-title {
    color: #d4a017;
}

/* Card content area with consistent height */
.card-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.5rem;
    transition: color 0.3s ease;
    color: #555;
    line-height: 1.65;
}

a:hover .card-text {
    color: #1a1a1a;
}

/* News card with image overlay */
.news-image-wrapper {
    overflow: hidden;
    height: 280px;
    width: 100%;
    flex-shrink: 0;
}
.news-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.card-news:hover .news-card-image {
    transform: scale(1.05);
}
.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}
.news-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.75rem;
    z-index: 2;
}
.news-overlay-date {
    display: inline-block;
    background: #d4a017;
    color: white;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    transition: background-color 0.3s ease;
}
.card-news:hover .news-overlay-date {
    background: #c49010;
}
.news-overlay-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}
.news-overlay-title a:hover {
    color: #d4a017 !important;
}

.date-badge {
    background: #f0f0f0;
    color: #666;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    padding: 5px 10px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a:hover .date-badge {
    background: #d4a017;
    color: white;
}

/* Increased padding for news card text content */
.card-news .p-4 {
    padding: 1.5rem 1.75rem 1.75rem 1.75rem !important;
}

/* Mobile Optimization Overrides */
@media (max-width: 767px) {
    /* Hero Section Mobile Optimization */
    .hero-section {
        min-height: 420px !important;
        padding: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: -1rem !important;
        margin-right: -1rem !important;
        margin-top: -3rem !important;
        margin-bottom: 1rem !important;
        width: calc(100% + 2rem) !important;
    }

    /* Hero Content Mobile Text Placement */
    .hero-content {
        width: 100% !important;
        text-align: center;
        max-width: 100%;
        z-index: 2 !important;
    }

    /* Responsive Typography */
    .display-4 {
        font-size: 2.4rem !important;
    }
    .display-6 {
        font-size: 1.8rem;
    }
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.6rem;
    }

    /* Event Card Mobile Optimization */
    .card-news {
        margin-bottom: 10px !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    }
    .card-news:hover {
        transform: none !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    }
    .card-news:hover .news-card-image {
        transform: none !important;
    }
    .card-title {
        font-size: 1.15rem !important;
    }
    .news-overlay-title {
        font-size: 1.4rem !important;
    }
    .news-overlay-content {
        padding: 1.25rem !important;
    }
    .card-news .p-4 {
        padding: 1.25rem !important;
    }
    a:hover .card-title {
        color: #20402e !important;
    }
    a:hover .date-badge {
        background: #f0f0f0 !important;
        color: #666 !important;
    }
    a:hover .card-text {
        color: inherit !important;
    }
    a:hover .news-overlay-date {
        background: #d4a017 !important;
    }
    .card-news .card-body {
        padding: 0 !important;
    }
    .card-news h5 {
        font-size: 0.9rem !important;
        line-height: 1.2;
    }

    /* Scrollable Tabs for Mobile */
    .nav-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        border-bottom: 2px solid #ddd;
        padding-bottom: 0px;
    }
    .nav-tabs .nav-link {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    /* Hide scrollbar for cleaner look */
    .nav-tabs::-webkit-scrollbar {
        display: none;
    }
    .nav-tabs {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    /* Header Adjustments */
    header img {
        max-height: 70px !important;
        margin-right: 15px !important;
    }
    header .d-flex.flex-column span:first-child {
        font-size: 1.8rem !important; /* Resize "Lane Tech Football" */
    }
    header .d-flex.flex-column span:last-child {
        font-size: 0.75rem !important; /* Resize "Home of the Champions" */
    }
    
    /* Navbar Adjustments */
    .navbar-toggler {
        align-self: flex-start;
        margin-top: 10px;
    }
}

/* Default header layout (desktop) */
.header-mobile-optimized {
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 1rem;
}
.header-mobile-optimized .site-logo {
    width: 120px;
    max-height: 140px;
}

/* Hamburger button styling for all mobile/tablet sizes */

/* Ensure hamburger button is always visible on smaller screens */
@media (max-width: 991px) {
    button.navbar-toggler {
        display: flex !important;
        visibility: visible !important;
        position: relative !important;
    }
}

/* Extended Mobile Optimizations */
@media (max-width: 991px) { /* Targeting Mobile & Tablet Navbar collapse */
   /* Ensure header stays above menu with hamburger visible */
   header {
       position: relative !important;
       z-index: 1001 !important;
   }
   /* Ensure hamburger menu is visible */
   .navbar-toggler {
       display: flex !important;
       border-color: #d4a017 !important;
       padding: 8px 12px;
       align-self: flex-end !important;
   }
   .navbar-toggler:focus {
       box-shadow: 0 0 0 0.25rem rgba(212, 160, 23, 0.5); /* Gold Glow */
   }
   .navbar-collapse {
       padding-top: 10px;
       border-top: 1px solid rgba(255,255,255,0.1);
       margin-top: 10px;
   }
   .navbar-nav .nav-item {
       border-bottom: 1px solid rgba(255,255,255,0.1); /* Subtle divider */
   }
   .navbar-nav .nav-item:last-child {
       border-bottom: none;
   }
   .navbar-nav .nav-link {
       padding-top: 12px;
       padding-bottom: 12px;
   }
}

@media (max-width: 991px) {
    /* Mobile Menu Button Styling */
    .header-mobile-optimized .navbar-toggler {
        padding: 4px !important;
        border: none !important;
        background: transparent !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        position: fixed !important;
        right: 1rem !important;
        top: calc(40px + 0.6rem) !important;
        z-index: 1002 !important;
    }
    .header-mobile-optimized .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    .header-mobile-optimized .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23d4a017' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        width: 22px;
        height: 22px;
    }
    
    /* Hide navbar bar on mobile, show only when expanded */
    .navbar-mobile-hidden {
        margin-bottom: 0 !important;
        border-radius: 0;
        box-shadow: none;
        /* Collapse the green bar when menu is closed */
        padding: 0 !important;
        background: transparent !important;
        min-height: 0 !important;
    }
    .navbar-mobile-hidden .container-fluid {
        padding: 0 !important;
    }

    /* Mobile menu overlay styling */
    .navbar-mobile-hidden .navbar-collapse {
        position: fixed !important;
        top: 85px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        max-height: calc(100vh - 85px) !important;
        background: linear-gradient(to bottom, #20402e 0%, #20402e 70%, rgba(32, 64, 46, 0.8) 100%) !important;
        z-index: 1000 !important;
        overflow-y: scroll !important;
        overflow-x: hidden !important;
        transform: translateY(-100%) !important;
        transition: transform 0.3s ease-in-out !important;
        padding: 1rem !important;
        margin-top: 0 !important;
        border-top: none !important;
        scrollbar-gutter: stable !important;
    }

    .navbar-mobile-hidden .navbar-collapse.show {
        transform: translateY(0) !important;
    }

    /* Add backdrop when menu is open */
    body:has(.navbar-mobile-hidden .navbar-collapse.show)::after {
        content: '' !important;
        position: fixed !important;
        top: 85px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.3) !important;
        z-index: 999 !important;
        cursor: pointer !important;
    }

    /* Restore green bar when mobile menu is expanded */

    /* Reduce h1 top margin on mobile */
    h1 {
        margin-top: 2px !important;
        margin-bottom: 10px !important;
        font-size: 1.6rem !important;
        padding-bottom: 4px !important;
        border-bottom-width: 3px !important;
    }
    h2 {
        font-size: 1.35rem !important;
    }
    
    /* Optimize h4 for mobile */
    h4 {
        font-size: 1.3rem !important;
        margin-top: 1.5rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Tighten paragraph spacing */
    p {
        margin-bottom: 0.75rem !important;
    }
    
    /* Tighten list spacing */
    ul {
        margin-bottom: 1rem !important;
    }
    
    li {
        margin-bottom: 0.4rem !important;
    }
    
    /* Tighten breadcrumb spacing */
    .breadcrumb-eyebrow {
        font-size: 0.75rem !important;
        margin-bottom: 3px !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 5px !important;
        flex-wrap: nowrap !important;
        overflow: hidden;
        white-space: nowrap;
    }
    .breadcrumb-eyebrow .breadcrumb-item {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .breadcrumb-eyebrow .breadcrumb-item.active {
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    /* Reduce main container padding after navbar */
    main {
        padding-top: 0 !important;
    }
    
    /* Better Touch Targets on Card Links */
    .card-news a {
        display: inline-block;
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

/* ===========================================
   Coach Card Styles
   =========================================== */
.coach-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.coach-card > * {
    margin: 0;
}

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

.coach-card-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    margin: 0;
    padding: 0;
}

.coach-card-img-placeholder {
    width: 100%;
    height: 280px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 4rem;
    margin: 0;
    padding: 0;
}

.coach-card-body {
    padding: 0.65rem 1.25rem 0.75rem;
}

.coach-card-body h4 {
    margin-top: 0 !important;
}

.coach-card-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #20402e;
    margin-top: 0 !important;
    margin-bottom: 0.25rem;
}

.coach-card-role {
    color: #666;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

/* Mobile adjustments for coach cards */
@media (max-width: 767px) {
  .coach-card-img,
  .coach-card-img-placeholder {
    height: 200px;
  }
  
  .coach-card-img-placeholder {
    font-size: 3rem;
  }
  
  .coach-card-body {
    padding: 0.6rem 1rem 0.5rem;
  }
  
  .coach-card-name {
    font-size: 1.3rem;
    margin-bottom: 0.15rem;
  }
  
  .coach-card-role {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
}

.coach-card-cta {
    color: #20402e;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: block;
}

.coach-card:hover .coach-card-cta {
    opacity: 1;
}

.coach-card-bio {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Coach Show Page Styles */
.coach-details h1 {
    margin-top: -0.5rem;
    margin-bottom: 0.75rem;
}

/* Mobile adjustments for coach page */
@media (max-width: 767px) {
    .coach-details h1 {
        margin-top: 0;
        margin-bottom: 0.5rem;
        font-size: 2rem;
    }
    
    /* Reduce space between photo and name on mobile */
    .row .col-md-4 .img-fluid,
    .row .col-md-4 .coach-placeholder-large {
        margin-bottom: 0;
    }
}

.coach-role-title {
    font-family: 'Roboto Slab', serif;
    font-size: 1.5rem;
    color: #20402e;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.coach-team-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.coach-team-label a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.coach-team-label a:hover {
    color: #20402e;
}

.coach-bio {
    font-size: 1.1rem;
    line-height: 1.8;
}

.coach-placeholder-large {
    width: 100%;
    height: 350px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 6rem;
}

/* Mini Coach Cards (for "Other Coaches" section) */
.coach-card-mini {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.coach-card-mini:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.coach-card-mini-img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    margin: 0;
    padding: 0;
}

.coach-card-mini-placeholder {
    width: 100%;
    height: 120px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 2rem;
}

.coach-card-mini-body {
    padding: 0.35rem 0.75rem 0.5rem;
}

.coach-card-mini-name {
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    color: #20402e;
    margin-top: 0;
    margin-bottom: 0.15rem;
    line-height: 1.2;
}

.coach-card-mini-role {
    color: #888;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
    margin: 0;
}

@media only screen and (max-width: 767px) {
    .coach-card-img,
    .coach-card-img-placeholder {
        height: 220px;
    }
    
    .coach-placeholder-large {
        height: 220px;
        font-size: 3rem;
    }
    
    .coach-card-mini-img,
    .coach-card-mini-placeholder {
        height: 100px;
    }
}

/* ===========================================
   Player Card Styles
   =========================================== */
.player-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
    position: relative;
}

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

.player-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center 30%;
}

.player-card-img-placeholder {
    width: 100%;
    height: 200px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 3rem;
}

.player-card-body {
    padding: 1rem;
    position: relative;
}

.player-card-number {
    position: absolute;
    top: -1.5rem;
    right: 1rem;
    background: #20402e;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    min-width: 2.5rem;
    text-align: center;
}

.player-card-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: #20402e;
    margin-bottom: 0.15rem;
    margin-top: 0;
}

.player-card-position {
    color: #666;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.player-card-details {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.player-card-cta {
    color: #20402e;
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.player-card:hover .player-card-cta {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .player-card-img,
    .player-card-img-placeholder {
        height: 160px;
    }
    
    .player-card-number {
        font-size: 0.9rem;
        padding: 0.2rem 0.5rem;
    }
}

/* Full-width player cards on very small phones */
@media only screen and (max-width: 575px) {
    .player-card-img,
    .player-card-img-placeholder {
        height: 280px;
    }
    
    .player-card-body {
        padding: 1.25rem;
    }
    
    .player-card-name {
        font-size: 1.4rem;
    }
    
    .player-card-position {
        font-size: 0.85rem;
    }
    
    .player-card-details {
        font-size: 0.9rem;
    }
    
    .player-card-number {
        font-size: 1.1rem;
        padding: 0.25rem 0.6rem;
    }
}

.compact-player-link {
    display: block;
    height: 100%;
    text-decoration: none;
}

.compact-player-card {
    min-height: 86px;
    height: 100%;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) 20px;
    align-items: center;
    gap: 0.875rem;
    padding: 0.7rem 0.875rem 0.7rem 0.7rem;
    background: #fff;
    border: 1px solid #dce1de;
    border-left: 4px solid #20402e;
    border-radius: 5px;
    box-shadow: 0 2px 7px rgba(20, 48, 32, 0.06);
    transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.compact-player-card:hover {
    border-color: #aebbb4;
    box-shadow: 0 5px 14px rgba(20, 48, 32, 0.12);
    transform: translateY(-1px);
}

.compact-player-number {
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #20402e;
    border-radius: 4px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
}

.compact-player-info {
    min-width: 0;
}

.compact-player-name {
    margin: 0;
    overflow: hidden;
    color: #20402e;
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.15;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-player-meta {
    margin-top: 0.45rem;
    overflow: hidden;
    color: #666;
    font-size: 0.75rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-player-chevron {
    color: #829087;
    text-align: right;
}

@media only screen and (max-width: 420px) {
    .compact-player-card {
        grid-template-columns: 48px minmax(0, 1fr) 16px;
        gap: 0.625rem;
    }

    .compact-player-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .compact-player-name {
        font-size: 1.3rem;
    }

    .compact-player-meta {
        font-size: 0.7rem;
    }
}

/* ===========================================
   Player Show Page Styles
   =========================================== */
.player-jersey-badge {
    display: inline-block;
    background: #20402e;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.player-jersey-badge-small {
    display: inline-block;
    background: #20402e;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    margin-right: 0.75rem;
}

.player-roster-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.player-team-link {
    color: #666;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.player-team-link:hover {
    color: #20402e;
}

/* Player Hero Card */
.player-hero-card {
    margin-bottom: 2rem;
}

.player-hero-layout {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.player-hero-photo .player-photo {
    width: 280px;
    height: 350px;
    object-fit: cover;
    object-position: center 20%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.player-hero-info {
    flex: 1;
}

.player-hero-name {
    font-family: 'Oswald', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    margin-top: -0.5rem;
    margin-bottom: 1.25rem;
    color: #20402e;
}

/* Mobile spacing for player hero */
@media (max-width: 767px) {
    .player-hero-card {
        margin-bottom: 1rem;
    }
    
    .player-hero-name {
        margin-top: 0;
        margin-bottom: 0.75rem;
    }
}

.player-hero-name .jersey-num {
    color: #20402e;
}

.player-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.player-stats-row .stat-item {
    min-width: 70px;
}

.player-stats-row .stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #888;
    margin-bottom: 0.2rem;
}

.player-stats-row .stat-value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #20402e;
}

.player-stats-row .team-link {
    color: #20402e;
    text-decoration: none;
}

.player-stats-row .team-link:hover {
    text-decoration: underline;
}

.player-callup-note {
    font-size: 0.95rem;
    color: #666;
}

.player-callup-note p {
    margin: 0;
}

.player-callup-note a {
    color: #20402e;
    font-weight: 500;
}

.player-roster-history {
    margin-top: 2rem;
}

.player-roster-history h2 {
    margin: 0 0 0.5rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
}

.player-roster-history-list {
    border-top: 1px solid #ddd;
}

.player-roster-history-item {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid #ddd;
    color: #20402e;
    text-decoration: none;
}

.player-roster-history-item:hover {
    color: #20402e;
    text-decoration: none;
}

.player-roster-history-season {
    min-width: 7rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
}

.player-roster-history-details {
    color: #666;
}

.player-social-row {
    display: flex;
    gap: 0.75rem;
}

.player-social-row .social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #20402e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.2s, background 0.2s;
}

.player-social-row .social-btn:hover {
    transform: scale(1.1);
    background: #2d5a3f;
    color: #fff;
}

.player-social-row .social-btn.hudl {
    background: linear-gradient(135deg, #f26522 0%, #d4540f 100%);
}

.player-social-row .social-btn.hudl:hover {
    background: linear-gradient(135deg, #ff7733 0%, #e5611a 100%);
}

@media only screen and (max-width: 767px) {
    .player-hero-layout {
        flex-direction: column;
        gap: 1rem;
    }
    
    .player-hero-photo .player-photo {
        width: 100%;
        height: auto;
        max-height: 400px;
    }
    
    .player-hero-name {
        font-size: 1.75rem;
    }
    
    .player-stats-row {
        gap: 1rem;
    }
}

.player-name-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #20402e;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    border-bottom: 4px solid #d4a017;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.player-position-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.player-position-title {
    font-family: 'Roboto Slab', serif;
    font-size: 1.25rem;
    color: #555;
    font-weight: 500;
    margin: 0;
}

.player-jersey-inline {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #20402e;
    background: rgba(32, 64, 46, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.player-commit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: #20402e;
}

.player-commit i {
    color: #333;
}

.player-commit strong {
    font-weight: 600;
}

.player-commit-text {
    display: flex;
    flex-direction: column;
}

.player-commit-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.player-commit-school {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #20402e;
}

.player-position-abbrev {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.player-commit-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #d4a017 0%, #b8860b 100%);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.3);
}

.player-team-label {
    font-size: 1rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.event-detail-images {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.event-detail-image {
    margin: 0 auto;
    max-width: 1000px;
}

.event-detail-image img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.event-detail-image-previews {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
}

.event-detail-image-previews img {
    display: block;
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.player-team-label a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.player-team-label a:hover {
    color: #20402e;
}

.player-stat-box {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 0.75rem 1.25rem;
    text-align: center;
    min-width: 80px;
}

.player-stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 0.15rem;
}

.player-stat-value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #20402e;
}

.player-update-notification {
    background: #f8f9fa;
    border-left: 4px solid #d4a017;
    padding: 1rem 1.25rem;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #666;
}

.player-update-notification i {
    color: #d4a017;
}

.player-update-notification a {
    color: #20402e;
    font-weight: 500;
}

.player-update-notification a:hover {
    text-decoration: underline;
}

.player-placeholder-large {
    width: 280px;
    height: 350px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    font-size: 6rem;
    border-radius: 8px;
}

@media only screen and (max-width: 767px) {
    .player-hero-photo {
        width: 100% !important;
        max-width: 100%;
    }
    
    .player-placeholder-large {
        width: 100%;
        height: 280px;
        font-size: 3rem;
    }
    
    .player-hero-photo .player-photo {
        width: 100%;
        height: auto;
        max-height: 280px;
    }
    
    .player-jersey-badge {
        font-size: 1.5rem;
    }
}

/* Player CTA Section */
.player-cta-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.player-cta-hudl {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f26522 0%, #e55a1c 100%);
    color: #fff;
    text-decoration: none;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 60px;
}

.player-cta-hudl:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(242, 101, 34, 0.4);
    color: #fff;
}

.player-cta-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    font-size: 1rem;
    flex-shrink: 0;
}

.player-cta-text {
    display: flex;
    flex-direction: column;
}

.player-cta-label {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-cta-sublabel {
    font-size: 0.75rem;
    opacity: 0.85;
}

.player-cta-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.player-cta-social:hover {
    transform: translateY(-2px);
    background: #333;
    color: #fff;
}

@media only screen and (max-width: 575px) {
    .player-cta-section {
        flex-direction: column;
        align-items: stretch;
    }
    
    .player-cta-hudl {
        justify-content: center;
    }
    
    .player-cta-social {
        width: 100%;
        height: auto;
        padding: 0.75rem;
    }
}

/* College Commit Badge */
.player-commit-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.player-commit-badge i {
    font-size: 1.1rem;
}

/* Position Abbreviation */
.player-position-abbrev {
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

/* Nav Dropdown Styles */
.navbar .dropdown-menu {
    border: none;
    border-radius: 0;
    margin-top: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.navbar .dropdown-item {
    font-family: 'Oswald', sans-serif;
    font-size: inherit;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    letter-spacing: 0.5px;
    color: white !important;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: rgba(255,255,255,0.1);
    color: #d4a017 !important;
}

.navbar .dropdown-toggle::after {
    margin-left: 0.4rem;
}

/* Utility Classes to Replace Inline Styles */
.clickable-card {
    display: block;
    cursor: pointer;
}

.text-shadow-dark {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.text-shadow-light {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.oswald-bold {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

.oswald-text {
    font-family: 'Oswald', sans-serif;
}

/* Event Card Styles */
.event-card-container {
    gap: 12px;
    padding: 14px;
}

.event-date-badge {
    min-width: 55px;
    background: #f8f9fa;
    padding: 8px 10px;
    border-radius: 4px;
    flex-shrink: 0;
}

.event-date-day {
    font-family: 'Oswald';
    font-weight: bold;
    font-size: 1.2rem;
    color: #20402e;
    line-height: 1;
}

.event-date-month {
    font-size: 0.65rem;
    color: #999;
    text-transform: uppercase;
    line-height: 1.2;
}

.event-info-section {
    min-width: 0;
}

.event-title {
    font-family: 'Oswald';
    font-size: 1.1rem;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.2;
}

.event-special-badge {
    font-size: 0.65rem;
    margin-top: 3px;
    display: inline-block;
}

.event-meta {
    margin-top: 4px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.event-meta-secondary {
    margin-top: 2px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.event-location-link {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 140px;
}

.event-actions {
    margin-top: 6px;
}

.event-action-btn {
    font-size: 0.7rem;
}

.registration-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    background-color: #eef4f0;
    border-top: 3px solid #20402e;
    border-radius: 8px;
    padding: 20px 24px;
    margin-top: 0;
}
.registration-row-text small {
    display: block;
    margin-bottom: 4px;
    color: #6c757d;
}
.registration-row-text p {
    font-size: 0.875rem;
    color: #333;
    margin: 0;
}
.registration-row-btn {
    flex-shrink: 0;
}
.btn-lane-inverse {
    background-color: #20402e;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #20402e;
    border-radius: 0;
    padding: 10px 25px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    line-height: 1.5;
    cursor: pointer;
}
.btn-lane-inverse:hover {
    background-color: #fff;
    color: #20402e;
}

.event-action-note {
    align-self: center;
    font-size: 0.7rem;
}

.event-score-badge {
    min-width: 65px;
    padding: 8px 10px;
    border-radius: 4px;
    flex-shrink: 0;
    height: fit-content;
}

.event-score-text {
    font-family: 'Oswald';
    font-size: 0.9rem;
    line-height: 1;
}

/* Event Show Page Styles */
.event-special-badge-large {
    font-size: 0.95rem;
    padding: 0.6rem 0.8rem;
    display: block;
    width: fit-content;
}

.event-detail-text {
    font-size: 1.1rem;
}

.event-final-score {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 1.5rem;
}

.video-embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    margin-bottom: 1rem;
}

.video-embed-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Hero Section Styles */
.hero-overlay-dark {
    background-color: rgba(0,0,0,0.6);
    z-index: 1;
}

.hero-overlay-medium {
    background-color: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-content-layer {
    z-index: 2;
}

.hero-image-bg {
    background-size: cover;
    background-position: center;
    margin-top: -1.5rem;
}

.hero-no-image-bg {
    background-color: #20402e;
    margin-top: -1.5rem;
}

.hero-text-center {
    text-align: center;
}

/* Team Card Styles */
.team-card-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 400px;
}

.team-card-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.team-card-gradient-overlay {
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
}

.team-name-large {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.team-name-card {
    font-family: 'Oswald';
    font-size: 1.5rem;
}

/* Advanced Layout */
.full-bleed-image {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.team-photo-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.image-block-display {
    display: block;
}

.sticky-sidebar {
    position: sticky;
    top: 2rem;
}

/* Sponsor Card Styles */
.sponsor-card {
    border: none;
    border-radius: 8px;
    border-top: 1px solid #e0e0e0;
    overflow: hidden;
}

.sponsor-logo {
    object-fit: cover;
    display: block;
}

.sponsor-description {
    line-height: 1.5;
}

/* Article Content */
.article-content-max-width {
    max-width: 600px;
}

/* Donate Page */
.donate-logo {
    width: 150px;
}

.donate-logo-check {
    width: 150px;
    padding-left: 15px;
}

/* Donate page — Option A two-column layout */
.donate-page-meter {
    margin-bottom: 20px;
    padding-bottom: 16px;
    padding-top: 20px;
    border-bottom: 1px solid #eee;
}

.donate-page-meter iframe {
    display: block;
    width: 100%;
}

.donate-page-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}

.donate-page-heading {
    font-family: 'Oswald', sans-serif;
    font-style: italic;
    font-size: 2rem;
    border-bottom: 3px solid #d4a017;
    padding-bottom: 8px;
    margin-bottom: 18px;
}

.donate-copy p {
    font-size: 0.95rem;
    margin-bottom: 14px;
    color: #333;
    line-height: 1.7;
}

.donate-list {
    padding-left: 20px;
    font-size: 0.92rem;
    line-height: 2.1;
    color: #444;
    margin-bottom: 16px;
}

.donate-stats {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.donate-stat {
    flex: 1;
    min-width: 90px;
    background: #f0f5f1;
    border-left: 3px solid #20402e;
    border-radius: 0 8px 8px 0;
    padding: 14px 12px;
    text-align: center;
}

.donate-stat-num {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #20402e;
    line-height: 1;
}

.donate-stat-lbl {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.donate-form-col {
    position: sticky;
    top: 56px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    margin-top: 12px;
}

.donate-form-eyebrow {
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d4a017;
    margin-bottom: 8px;
}

.donate-form-cta-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.donate-form-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #20402e;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.donate-form-subhead {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.donate-quote {
    border-left: 3px solid #d4a017;
    padding: 4px 0 4px 16px;
    margin: 20px 0;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #20402e;
    font-style: normal;
}

.donate-team-photo {
    width: 100%;
    border-radius: 8px;
    margin-top: 12px;
    margin-bottom: 0;
    display: block;
    object-fit: cover;
    max-height: 260px;
}

.donate-tax-note {
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
}

/* Hide donate banner + floating tab on the /donate page */
.page-donate .donate-banner,
.page-donate #donate-widget {
    display: none !important;
}

.donate-methods-heading {
    font-family: 'Oswald', sans-serif;
    font-style: italic;
    font-size: 1.15rem;
    border-bottom: 3px solid #d4a017;
    padding-bottom: 6px;
    margin-bottom: 20px;
}

.donate-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.donate-method-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.donate-method-logo-wrap {
    height: 76px;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.donate-logo {
    height: 28px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    object-position: left;
}

.donate-logo-check {
    height: 56px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    object-position: left;
    opacity: 0.7;
}

.donate-logo-zelle {
    height: 68px;
}

.donate-method-card p {
    font-size: 0.88rem;
    color: #333;
    line-height: 1.6;
    margin: 0 0 6px;
}

.donate-method-card p:last-child {
    margin-bottom: 0;
}

.donate-method-note {
    font-size: 0.78rem !important;
    color: #888 !important;
    font-style: italic;
    margin-top: 4px !important;
}

.donate-address {
    font-style: normal;
    background: #f0f5f1;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.8;
    margin-top: 6px;
}

@media (max-width: 900px) {
    .donate-page-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .donate-form-col {
        position: static;
        padding: 16px;
    }
    .donate-form-col dbox-widget,
    .donate-form-col dbox-widget iframe {
        max-width: 100% !important;
        min-width: 0 !important;
        width: 100% !important;
    }
    .donate-team-photo {
        max-height: 200px;
    }
    .donate-stat {
        padding: 10px 8px;
    }
    .donate-stat-num {
        font-size: 1.3rem;
    }
    .donate-stat-lbl {
        font-size: 0.6rem;
        letter-spacing: 0;
    }
    .donate-methods-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .donate-methods-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Display Title Styles */
.display-title-hero {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* Store Page */
.store-page {
    --store-green: #20402e;
    --store-gold: #d4a017;
    --store-ink: #18211c;
    margin-bottom: 56px;
}

.store-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    min-height: 560px;
    background: var(--store-green);
    color: white;
    overflow: hidden;
}

.store-product {
    min-width: 0;
    background: white;
}

.store-product a,
.store-product-image {
    display: block;
    width: 100%;
    height: 100%;
}

.store-product-image {
    object-fit: contain;
    aspect-ratio: 1 / 1;
}

.store-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(36px, 6vw, 72px);
    border-left: 8px solid var(--store-gold);
}

.store-eyebrow {
    margin: 0 0 12px;
    color: var(--store-gold);
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.store-heading {
    max-width: 560px;
    margin: 0 0 28px;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.75rem);
    font-style: italic;
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0;
}

.store-deadline {
    margin: 0 0 18px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    line-height: 1.35;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.store-deadline strong,
.store-deadline span {
    display: block;
}

.store-deadline strong {
    margin: 3px 0;
    color: white;
    font-size: 1.8rem;
}

.store-lead {
    max-width: 480px;
    margin: 0 0 26px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
}

.store-cta {
    align-self: flex-start;
    min-width: 190px;
    padding: 13px 24px;
    border: 2px solid var(--store-gold);
    background: var(--store-gold);
    color: var(--store-ink);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.store-cta:hover {
    background: transparent;
    color: white;
}

.store-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-right: 1px solid #dfe5e1;
    border-bottom: 1px solid #dfe5e1;
    border-left: 1px solid #dfe5e1;
}

.store-detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    min-width: 0;
    padding: 30px clamp(24px, 4vw, 48px);
}

.store-detail + .store-detail {
    border-left: 1px solid #dfe5e1;
}

.store-detail-number {
    color: var(--store-gold);
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
}

.store-detail h2 {
    margin: 0 0 7px;
    color: var(--store-green);
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0;
}

.store-detail p {
    margin: 0;
    color: #4c5650;
    font-size: 0.9rem;
    line-height: 1.6;
}

.store-bonus {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
    align-items: center;
    gap: 36px;
    margin-top: 48px;
    padding: clamp(28px, 5vw, 52px);
    background-color: #f0f4f1;
    background-image: repeating-linear-gradient(135deg, transparent, transparent 18px, rgba(32, 64, 46, 0.035) 18px, rgba(32, 64, 46, 0.035) 19px);
    border-top: 5px solid var(--store-gold);
}

.store-bonus h2 {
    margin: 0 0 10px;
    color: var(--store-green);
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-style: italic;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0;
}

.store-bonus-copy > p:last-child {
    margin: 0;
    color: #4c5650;
    font-size: 0.95rem;
}

.store-magnet-image {
    display: block;
    width: 100%;
    max-height: 220px;
    object-fit: contain;
}

@media (max-width: 800px) {
    .store-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .store-product-image {
        max-height: 440px;
    }

    .store-intro {
        padding: 36px 24px 40px;
        border-top: 6px solid var(--store-gold);
        border-left: 0;
    }

    .store-heading {
        font-size: clamp(2.35rem, 13vw, 3.6rem);
    }

    .store-details,
    .store-bonus {
        grid-template-columns: 1fr;
    }

    .store-detail + .store-detail {
        border-top: 1px solid #dfe5e1;
        border-left: 0;
    }

    .store-bonus {
        gap: 24px;
        margin-top: 32px;
        text-align: center;
    }

    .store-magnet-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .store-cta {
        width: 100%;
    }
}

@media (prefers-color-scheme: dark) {
    .store-product {
        background: white;
    }

    .store-heading,
    .store-deadline,
    .store-deadline strong {
        color: white !important;
    }

    .store-details {
        border-color: #404842;
        background: #222723;
    }

    .store-detail + .store-detail {
        border-color: #404842;
    }

    .store-detail h2,
    .store-bonus h2 {
        color: #a0ddb8 !important;
    }

    .store-detail p,
    .store-bonus-copy > p:last-child {
        color: #c1c8c3;
    }

    .store-bonus {
        background-color: #252d27;
        background-image: repeating-linear-gradient(135deg, transparent, transparent 18px, rgba(212, 160, 23, 0.045) 18px, rgba(212, 160, 23, 0.045) 19px);
    }

    .store-cta {
        color: var(--store-ink) !important;
    }

    .store-cta:hover {
        color: white !important;
    }
}

/* ── Donate Banner ───────────────────────────────────────── */
.donate-banner {
    background: #20402e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 52px 9px 16px;
    position: relative;
    z-index: 500;
}

.donate-banner[hidden] {
    display: none;
}

.donate-banner-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.donate-banner-meter {
    display: flex;
    justify-content: center;
    padding: 4px 0 2px;
}

.donate-banner-meter iframe {
    display: block;
    border-radius: 4px;
    overflow: hidden;
}

.donate-banner-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    letter-spacing: 0.3px;
}

.donate-banner-text strong {
    color: #d4a017;
}

.donate-banner-btn {
    background: #d4a017;
    color: #20402e;
    border: none;
    border-radius: 4px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
    font: inherit;
}

.donate-banner-btn:hover {
    background: #e8b929;
}

.donate-banner-dismiss {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,0.85);
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    font: inherit;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.15s, background-color 0.15s;
}

.donate-banner-dismiss:hover,
.donate-banner-dismiss:focus-visible {
    color: #fff;
    background-color: rgba(255,255,255,0.1);
    outline: none;
}

@media (max-width: 1199px) {
    .donate-banner {
        padding: 10px 52px 10px 16px;
        border-bottom: 2px solid #d4a017;
    }
    .donate-banner-inner {
        flex-wrap: nowrap;
        gap: 10px;
        width: 100%;
        justify-content: space-between;
    }
    .donate-banner-sub {
        display: none;
    }
    .donate-banner-meter {
        display: none;
    }
    .donate-banner-text {
        font-size: 1rem;
    }
    .donate-banner-btn {
        font-size: 0.78rem;
        padding: 7px 14px;
        flex-shrink: 0;
    }
}

/* ── Floating Donate Tab + Slide-in Panel ─────────────────── */
.donate-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: #d4a017;
    color: #20402e;
    border: none;
    border-radius: 8px 0 0 8px;
    padding: 16px 8px;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    box-shadow: -2px 2px 10px rgba(0,0,0,0.22);
    transition: background 0.15s, opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.donate-tab--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(100%, -50%);
}

.donate-tab:hover {
    background: #e8b929;
}

.donate-tab-heart {
    writing-mode: horizontal-tb;
    font-size: 0.9rem;
}

.donate-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 460px;
    height: 100dvh;
    background: #fff;
    box-shadow: -4px 0 28px rgba(0,0,0,0.2);
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 1060;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.donate-panel--open {
    transform: translateX(0);
}

.donate-panel-header {
    background: #20402e;
    color: #fff;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.donate-panel-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.65);
    font-size: 1.1rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.15s;
}

.donate-panel-close:hover {
    color: #fff;
}

.donate-panel-meter {
    padding: 16px 16px;
    border-bottom: 1px solid #eee;
}

.donate-meter-label {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #20402e;
    font-weight: 600;
    margin: 0 0 8px;
}

.donate-meter-cta {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #20402e;
    font-weight: 600;
    margin: 10px 0 0;
    text-align: left;
}

.donate-panel-meter iframe {
    display: block;
    width: 100%;
}

.donate-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.donate-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1055;
}

.donate-backdrop--visible {
    display: block;
}

@media (max-width: 767px) {
    .donate-panel {
        width: 100%;
    }
}

/* ── Booster Club Page ─────────────────────────────────── */
.booster-section-block {
    margin-bottom: 0;
}

/* Number + heading on the same baseline */
.booster-section-header {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.booster-section-header h2 {
    margin: 0;
}

.booster-section-number {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d0d0d0;
    line-height: 1;
    flex-shrink: 0;
    user-select: none;
}

.booster-impact-row {
    display: flex;
    gap: 1rem;
    margin: 1rem 0 1.25rem;
    flex-wrap: wrap;
}

.booster-impact-item {
    background: #f7f4ee;
    border-left: 3px solid #d4a017;
    padding: 0.75rem 1rem;
    flex: 1;
    min-width: 150px;
    font-size: 0.9rem;
    color: #444;
}

.booster-impact-item strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #20402e;
    margin-bottom: 0.3rem;
}

.board-open-positions {
    background: #fff8e7;
    border: 1px solid #f0d070;
    padding: 1.25rem 1.5rem;
    margin-top: 1.5rem;
}

.board-open-positions h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #7a5500;
    margin: 0 0 0.6rem;
}

@media (max-width: 600px) {
    .booster-impact-item {
        min-width: 100%;
    }
}

/* Dark mode overrides declared last so source order guarantees they win */
@media (prefers-color-scheme: dark) {
    .booster-impact-item {
        background: #252525;
        color: #c8c8c8;
    }

    .booster-impact-item strong {
        color: #8ed4a8;
    }

    .board-open-positions {
        background: #1e1a0e;
        border-color: #5a4a10;
    }
}

/* ── Season Fees payment cards ──────────────────────────── */
.fees-payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.fees-payment-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 24px 20px 20px;
    display: flex;
    flex-direction: column;
}

.fees-payment-logo-wrap {
    height: 64px;
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.fees-card-icon {
    width: 52px;
    height: 36px;
    color: #20402e;
    stroke-width: 1.5px;
}

.fees-payment-logo {
    height: 28px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    object-position: left;
}

.fees-payment-logo-zelle {
    height: 60px;
}

.fees-payment-label {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0 0 6px !important;
    color: #20402e;
}

.fees-payment-detail {
    font-size: 0.88rem;
    color: #333;
    margin: 0 0 8px !important;
}

.fees-payment-note {
    font-size: 0.78rem !important;
    color: #888 !important;
    font-style: italic;
    margin: 0 !important;
}

.fees-pay-btn {
    margin-top: auto;
    align-self: flex-start;
}

@media (max-width: 700px) {
    .fees-payment-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-color-scheme: dark) {
    .fees-payment-card {
        border-color: #333;
    }
    .fees-payment-logo-wrap {
        border-bottom-color: #2a2a2a;
    }
    .fees-card-icon {
        color: #8ed4a8;
    }
    .fees-payment-label {
        color: #8ed4a8;
    }
    .fees-payment-detail {
        color: #c8c8c8;
    }
}
