/* Page centering */
.page-center {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 48px;
}

/* Hero container */
.hero-box {
  text-align: center;
  margin-bottom: 24px;
}

/* Headings */
.hero-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #1f2937; /* slate-800 */
}

.hero-subtitle {
  font-size: 15px;
  color: #6b7280; /* gray-500 */
  margin-bottom: 18px;
}

/* --- React Select (dcc.Dropdown) --- */
.modern-dropdown .Select-control {
  height: 56px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 0 14px;
  font-size: 18px;
  transition: all 0.15s ease;
}

/* Hover */
.modern-dropdown .Select-control:hover {
  border-color: #c7d2fe;
}

/* Focus */
.modern-dropdown.is-focused .Select-control {
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99,102,241,0.15);
}

/* Placeholder */
.modern-dropdown .Select-placeholder {
  line-height: 56px;
  color: #9ca3af;
}

/* Selected value */
.modern-dropdown .Select-value-label {
  line-height: 56px;
  font-weight: 500;
  color: #6b7280
}

/* Dropdown arrow */
.modern-dropdown .Select-arrow {
  border-color: #6b7280 transparent transparent;
}

/* Menu */
.modern-dropdown .Select-menu-outer {
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  border: none;
  margin-top: 6px;
}

/* Options */
.modern-dropdown .Select-option {
  padding: 12px 16px;
  font-size: 16px;
}

.modern-dropdown .Select-option.is-focused {
  background-color: #eef2ff;
}

.modern-dropdown .Select-option.is-selected {
  background-color: #6366f1;
  color: white;
}

/* Results spacing */
.results-wrapper {
  margin-top: 24px;
}


/* Smaller control bar for Matchup page */
.compact-dropdown .Select-control {
  height: 40px;
  min-height: 40px;
  font-size: 14px;
  padding: 0 10px;
  border-radius: 8px;
  font-color: #6b7280;
}

.compact-dropdown .Select-placeholder,
.compact-dropdown .Select-value-label {
  line-height: 38px;
  font-color: #6b7280;
}

.compact-dropdown .Select-arrow-zone {
  padding-top: 2px;
}

/* Slightly lighter shadow so it doesn’t compete */
.compact-dropdown .Select-control {
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

/* Selected value (when dropdown is closed) */
.compact-dropdown .Select-value-label {
  color: #6b7280;   /* slate-500 */
  font-size: 14px;
}

/* =========================
   Robotic / Compute Button
   ========================= */
.robot-button {
  background: linear-gradient(180deg, #2b2f33, #1f2327);
  color: #f1f3f5;
  border: 1px solid #3a3f44;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transition: all 0.15s ease-in-out;
}

/* Hover */
.robot-button:hover {
  background: linear-gradient(180deg, #343a40, #262b30);
  border-color: #4a5056;
  transform: translateY(-1px);
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Active / pressed */
.robot-button:active {
  transform: translateY(0);
  box-shadow:
    0 3px 8px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(0,0,0,0.4);
}

/* Disabled (future-proof) */
.robot-button:disabled {
  background: #2a2e32;
  color: #9aa0a6;
  border-color: #2a2e32;
  box-shadow: none;
  cursor: not-allowed;
}


.about-positions ul {
    padding-left: 18px;
    margin-top: 6px;
}

.about-positions li {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.about-positions strong {
    letter-spacing: 0.4px;
}


.filter-group-header {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #6b7280;
    margin-bottom: 6px;
}



/* ============================
   Base Styled Accordion
   ============================ */

.styled-accordion {
  margin: 0 auto;
}

/* Accordion item container */
.styled-accordion .accordion-item {
  border: none;
  border-radius: 18px;
  background: #ffffff;
  overflow: visible;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

/* Collapsed (closed) state */
.styled-accordion .accordion-button.collapsed {
  background-color: #ffffff;
  color: #6b7280;
  font-weight: 600;
  font-size: 14px;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Expanded (open) state */
.styled-accordion .accordion-button:not(.collapsed) {
  background-color: #e0ecff;
  color: #0f3d7a;
  box-shadow: none;
}

/* Remove focus ring */
.styled-accordion .accordion-button:focus {
  box-shadow: none;
}

/* Chevron */
.styled-accordion .accordion-button::after {
  background-size: 14px;
  opacity: 0.7;
}

/* Body */
.styled-accordion .accordion-body {
  padding: 14px 16px 18px;
  background-color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* Allow dropdowns & shadows to escape */
.styled-accordion,
.styled-accordion .accordion-item,
.styled-accordion .accordion-body {
  overflow: visible !important;
}





/* ============================
   Year Accordion (Secondary Hero)
   ============================ */

.year-accordion {
  max-width: 420px;
  margin: 0 auto;
}

/* Accordion item container */
.year-accordion .accordion-item {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  background: transparent;
}

/* ============================
   COLLAPSED (closed) state
   ============================ */
.year-accordion .accordion-button.collapsed {
  background-color: #ffffff;          /* 👈 match hero dropdown bg */
  color: #6b7280;
  font-weight: 600;
  font-size: 14px;
  border-radius: 14px;
  padding: 12px 16px;

  /* 👇 same shadow language as dropdowns */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* ============================
   EXPANDED (open) state
   ============================ */
.year-accordion .accordion-button:not(.collapsed) {
  background-color: #e0ecff;          /* your light blue active state */
  color: #0f3d7a;
  box-shadow: none;
}

/* Remove default focus ring */
.year-accordion .accordion-button:focus {
  box-shadow: none;
}

/* Chevron */
.year-accordion .accordion-button::after {
  background-size: 14px;
  opacity: 0.7;
}

/* Body */
.year-accordion .accordion-body {
  padding: 14px 16px 18px;
  background-color: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* Text inside */
.year-accordion-text {
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.35;
}

/* ============================
   Force visible outer shadow
   ============================ */

.year-accordion .accordion-item {
  background: #ffffff;
  border-radius: 18px;

  /* 👇 THIS is the missing shadow */
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);

  /* spacing + clipping */
  overflow: visible;
}

/* Remove competing shadows so it looks clean */
.year-accordion .accordion-button {
  box-shadow: none !important;
}

/* Allow dropdowns to escape accordion */
.year-accordion .accordion-item,
.year-accordion .accordion-body {
  overflow: visible !important;
}

/* Ensure dropdown menus appear above accordions/cards */
.Select-menu-outer {
  z-index: 9999 !important;
}

/* Prevent clipping anywhere in layout */
.accordion,
.accordion-collapse,
.accordion-body {
  overflow: visible;
}





/* ============================
   Full-width Profile Accordion
   ============================ */

.profile-accordion {
  max-width: 100%;
}


.profile-accordion {
  max-width: 1100px; /* if you want a premium, centered feel */
}


