/* stylelint-disable */

@font-face {
  font-family: 'Work Sans';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RnVcRkupg.woff2') format('woff2');
}
@font-face {
  font-family: 'Work Sans';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RnVcRkupg.woff2') format('woff2');
}
@font-face {
  font-family: 'Work Sans';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RnVcRkupg.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Code Pro';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqlPevWnsUnxg.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Code Pro';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('https://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqlPevWnsUnxg.woff2') format('woff2');
}

/**
 * Scale Army Careers — Ashby Custom CSS
 * Aesthetic: Kinetic Minimalism
 * Fonts: Work Sans (400/500/600) + Source Code Pro (400/500)
 * Fonts are loaded by the WordPress parent page — not imported here.
 * ─────────────────────────────────────────────────────────────────
 * Brand tokens:
 *   Teal      #086252   — primary action, headings, accents
 *   Lavender  #C4B3F7   — highlights, gradient end, focus rings
 *   Cream     #FEF2DE   — card surface variant
 *   Off-White #FFFCF0   — page background (used everywhere)
 *   Ink       #0F1A17   — body text
 *   Ink-2     #3D4F4B   — secondary text
 *   Ink-3     #8A9994   — muted labels, metadata
 */

/* ══════════════════════════════════════════
   TOKENS
══════════════════════════════════════════ */
:root {
  --colorPrimary900:       #086252;
  --colorPrimary600:       #0a7a67;
  --widthMaxJobBoard:      900px;
  --borderRadiusContainer: 14px;
  --borderRadiusControl:   10px;
  --borderRadiusButton:    8px;
  --fontFamily:            'Work Sans', sans-serif;
  --colorAppBackground:    #FFFCF0;

  --sa-teal:               #086252;
  --sa-teal-dark:          #065044;
  --sa-teal-light:         #e0f0ed;
  --sa-lavender:           #C4B3F7;
  --sa-lavender-light:     #ede8fe;
  --sa-cream:              #FEF2DE;
  --sa-bg:                 #FFFCF0;
  --sa-ink:                #0F1A17;
  --sa-ink-2:              #3D4F4B;
  --sa-ink-3:              #8A9994;
  --sa-border:             rgba(8,98,82,0.14);
  --sa-border-focus:       rgba(196,179,247,0.5);
  --sa-shadow-hover:       0 6px 24px rgba(8,98,82,0.12);
  --sa-mono:               'Source Code Pro', monospace;

  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px; --sp-12: 48px;
}

/* ══════════════════════════════════════════
   BASE
══════════════════════════════════════════ */
body, body * {
  font-family: 'Work Sans', sans-serif !important;
  box-sizing: border-box !important;
  font-style: normal !important;
  -webkit-font-smoothing: antialiased !important;
}

body {
  background: var(--sa-bg) !important;
  color: var(--sa-ink) !important;
}

/* ══════════════════════════════════════════
   JOB BOARD HEADING
══════════════════════════════════════════ */
.ashby-job-board-heading {
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--sa-ink-3) !important;
  margin-bottom: var(--sp-2) !important;
}

.ashby-job-board-heading-count {
  font-family: var(--sa-mono) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: var(--sa-teal) !important;
  background: var(--sa-teal-light) !important;
  padding: 3px 10px !important;
  border-radius: 100px !important;
}

/* ══════════════════════════════════════════
   FILTERS — keep Department only
══════════════════════════════════════════ */
.ashby-job-board-filters-label {
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--sa-ink-3) !important;
}

.ashby-job-board-reset-filters-label {
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: var(--sa-teal) !important;
  cursor: pointer !important;
}

/* Hide Location, Employment Type, Location Type by aria-label */
select[aria-label="Location"],
select[aria-label="Employment Type"],
select[aria-label="Location Type"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
}

/* Style the Department filter */
select[aria-label="Department"] {
  display: block !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  background: var(--sa-bg) !important;
  border: 1px solid var(--sa-border) !important;
  border-radius: var(--borderRadiusControl) !important;
  color: var(--sa-ink) !important;
  padding: 10px 14px !important;
  cursor: pointer !important;
  transition: border-color 0.15s !important;
}

select[aria-label="Department"]:focus {
  outline: none !important;
  border-color: var(--sa-lavender) !important;
  box-shadow: 0 0 0 3px var(--sa-border-focus) !important;
}

/* ══════════════════════════════════════════
   DEPARTMENT LABELS
══════════════════════════════════════════ */
.ashby-department-heading,
.ashby-job-posting-brief-department-heading {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--sa-ink-3) !important;
  padding-bottom: var(--sp-3) !important;
  border-bottom: 1px solid var(--sa-border) !important;
  margin-top: var(--sp-10) !important;
  margin-bottom: var(--sp-4) !important;
  background: transparent !important;
}

.ashby-department-heading-level,
.ashby-job-posting-brief-department-heading-level {
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--sa-ink-3) !important;
}

/* ══════════════════════════════════════════
   CARD GRID
══════════════════════════════════════════ */
.ashby-job-posting-brief-list {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: var(--sp-4) !important;
  margin-top: var(--sp-4) !important;
}

.ashby-job-posting-brief {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: auto !important;
  min-height: 160px !important;
  background: var(--sa-bg) !important;
  border: 1.5px dashed var(--sa-border) !important;
  border-radius: var(--borderRadiusContainer) !important;
  padding: var(--sp-6) !important;
  cursor: pointer !important;
  overflow: hidden !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease !important;
}

.ashby-job-posting-brief:hover {
  border-color: var(--sa-teal) !important;
  box-shadow: var(--sa-shadow-hover) !important;
  transform: translateY(-2px) !important;
}

.ashby-job-posting-brief-title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--sa-teal) !important;
  line-height: 1.35 !important;
  white-space: normal !important;
  word-break: break-word !important;
  margin: 0 0 var(--sp-3) 0 !important;
}

.ashby-job-posting-brief-details {
  font-family: var(--sa-mono) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: var(--sa-ink-3) !important;
  line-height: 1.7 !important;
  margin-top: auto !important;
}

/* ══════════════════════════════════════════
   JOB DETAIL — HEADER
══════════════════════════════════════════ */
.ashby-job-posting-header {
  background: linear-gradient(180deg, #FFFDF1 0%, #EDE8FE 100%) !important;
  border-radius: var(--borderRadiusContainer) !important;
  border: 1px solid rgba(196,179,247,0.3) !important;
  padding: var(--sp-12) var(--sp-10) !important;
  margin-bottom: var(--sp-8) !important;
}

.ashby-job-posting-heading {
  font-size: 28px !important;
  font-weight: 600 !important;
  color: var(--sa-ink) !important;
  letter-spacing: -0.02em !important;
  line-height: 1.2 !important;
  margin-bottom: var(--sp-3) !important;
}

.ashby-job-posting-left-pane {
  font-size: 13px !important;
  color: var(--sa-ink-2) !important;
  line-height: 1.8 !important;
  background: transparent !important;
}

.ashby-job-posting-left-pane label,
.ashby-job-posting-left-pane dt,
.ashby-job-posting-left-pane h3,
.ashby-job-posting-left-pane h4,
[class*="_jobPostingMeta_"],
[class*="_locationText_"],
[class*="_employmentType_"],
[class*="_metaItem_"] {
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--sa-ink-3) !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}

/* ══════════════════════════════════════════
   JOB DETAIL — RIGHT PANE & TABS
══════════════════════════════════════════ */
.ashby-job-posting-right-pane {
  background: var(--sa-bg) !important;
  border: 1px solid var(--sa-border) !important;
  border-radius: var(--borderRadiusContainer) !important;
  overflow: hidden !important;
}

.ashby-job-posting-right-pane-tab-slider {
  background: linear-gradient(180deg, #FFFDF1 0%, #C4B3F7 100%) !important;
  border-radius: 6px !important;
}

.ashby-job-posting-right-pane-overview-tab,
.ashby-job-posting-right-pane-application-tab {
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--sa-ink-2) !important;
}

/* ══════════════════════════════════════════
   JOB DESCRIPTION BODY
══════════════════════════════════════════ */
[class*="_descriptionText_"],
[class*="_descriptionText_"] p,
[class*="_descriptionText_"] li,
[class*="_descriptionText_"] span {
  font-size: 15px !important;
  font-weight: 400 !important;
  color: var(--sa-ink) !important;
  line-height: 1.75 !important;
}

[class*="_descriptionText_"] h1,
[class*="_descriptionText_"] h2,
[class*="_descriptionText_"] h3 {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--sa-ink) !important;
  letter-spacing: -0.01em !important;
  margin-top: var(--sp-8) !important;
  margin-bottom: var(--sp-3) !important;
}

[class*="_descriptionText_"] strong {
  font-weight: 600 !important;
  color: var(--sa-ink) !important;
}

[class*="_descriptionText_"] ul,
[class*="_descriptionText_"] ol {
  padding-left: var(--sp-5) !important;
  margin-bottom: var(--sp-4) !important;
}

[class*="_descriptionText_"] li {
  margin-bottom: var(--sp-1) !important;
}

/* ══════════════════════════════════════════
   BACK BUTTON
══════════════════════════════════════════ */
.ashby-job-board-back-to-all-jobs-button {
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--sa-teal) !important;
  background: transparent !important;
  border: 1px solid var(--sa-border) !important;
  border-radius: var(--borderRadiusButton) !important;
  padding: 9px 16px !important;
  cursor: pointer !important;
  transition: background 0.15s, border-color 0.15s !important;
}

.ashby-job-board-back-to-all-jobs-button:hover {
  background: var(--sa-teal-light) !important;
  border-color: var(--sa-teal) !important;
}

/* ══════════════════════════════════════════
   FORM — LAYOUT
══════════════════════════════════════════ */
.ashby-application-form-container {
  padding: var(--sp-8) !important;
  background: var(--sa-bg) !important;
}

.ashby-application-form-section-container {
  margin-bottom: var(--sp-8) !important;
}

/* ══════════════════════════════════════════
   FORM — TYPOGRAPHY HIERARCHY
══════════════════════════════════════════ */
.ashby-application-form-container * {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--sa-ink) !important;
  line-height: 1.6 !important;
}

.ashby-application-form-section-header-title {
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--sa-ink-3) !important;
  padding-bottom: var(--sp-2) !important;
  margin-bottom: var(--sp-5) !important;
  border-bottom: 1px solid var(--sa-border) !important;
}

.ashby-application-form-section-header-description {
  font-size: 13px !important;
  color: var(--sa-ink-3) !important;
  line-height: 1.65 !important;
  margin-bottom: var(--sp-5) !important;
}

.ashby-application-form-question-title {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--sa-ink) !important;
  margin-bottom: var(--sp-1) !important;
  line-height: 1.45 !important;
}

.ashby-application-form-question-description,
[class*="_selectAllThatApply"],
[class*="_multiSelectHint"] {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: var(--sa-ink-3) !important;
  margin-bottom: var(--sp-3) !important;
}

.ashby-application-form-field-entry label,
[class*="_optionLabel"],
[class*="_radioLabel"],
[class*="_checkboxLabel"] {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--sa-ink) !important;
  line-height: 1.5 !important;
}

/* ══════════════════════════════════════════
   FORM — TEXT INPUTS
══════════════════════════════════════════ */
.ashby-application-form-field-entry input:not([type="radio"]):not([type="checkbox"]),
.ashby-application-form-field-entry textarea,
.ashby-application-form-field-entry select,
html body input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]),
html body textarea,
html body select {
  font-size: 14px !important;
  color: var(--sa-ink) !important;
  background: var(--sa-bg) !important;
  border: 1px solid var(--sa-border) !important;
  border-radius: var(--borderRadiusControl) !important;
  padding: 11px 14px !important;
  width: 100% !important;
  transition: border-color 0.15s, box-shadow 0.15s !important;
}

.ashby-application-form-field-entry input:focus,
.ashby-application-form-field-entry textarea:focus,
.ashby-application-form-field-entry select:focus {
  outline: none !important;
  border-color: var(--sa-lavender) !important;
  box-shadow: 0 0 0 3px var(--sa-border-focus) !important;
}

/* ══════════════════════════════════════════
   FORM — RADIO & CHECKBOX
══════════════════════════════════════════ */
input[type="radio"],
input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  accent-color: var(--sa-teal) !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
  margin-top: 2px !important;
}

input[type="radio"]:checked + label,
input[type="radio"]:checked ~ label,
input[type="checkbox"]:checked + label,
input[type="checkbox"]:checked ~ label {
  color: var(--sa-teal) !important;
  font-weight: 600 !important;
}

/* ══════════════════════════════════════════
   FORM — YES/NO BOOLEAN
══════════════════════════════════════════ */
[class*="_booleanOption"],
[class*="_segmentedOption"],
[class*="_toggleOption"] {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--sa-ink) !important;
  background: var(--sa-bg) !important;
  border: 1px solid var(--sa-border) !important;
  border-radius: var(--borderRadiusButton) !important;
  padding: 10px 24px !important;
  cursor: pointer !important;
  transition: border-color 0.15s, background 0.15s !important;
}

[class*="_booleanOption"]:hover,
[class*="_segmentedOption"]:hover,
[class*="_toggleOption"]:hover {
  border-color: var(--sa-teal) !important;
  background: var(--sa-teal-light) !important;
}

[class*="_booleanOption"][aria-checked="true"],
[class*="_segmentedOption"][aria-checked="true"] {
  background: var(--sa-teal) !important;
  color: var(--sa-bg) !important;
  border-color: var(--sa-teal) !important;
}

/* ══════════════════════════════════════════
   FORM — FILE UPLOAD
══════════════════════════════════════════ */
.ashby-application-form-autofill-uploader {
  border: 1.5px dashed var(--sa-border) !important;
  border-radius: var(--borderRadiusContainer) !important;
  background: var(--sa-bg) !important;
  padding: var(--sp-8) !important;
  transition: border-color 0.15s, background 0.15s !important;
}

.ashby-application-form-autofill-uploader:hover {
  border-color: var(--sa-teal) !important;
  background: var(--sa-teal-light) !important;
}

.ashby-application-form-autofill-input-root {
  background: var(--sa-lavender-light) !important;
  border: 1px solid rgba(196,179,247,0.5) !important;
  border-radius: var(--borderRadiusContainer) !important;
  padding: var(--sp-5) !important;
}

.ashby-application-form-autofill-input-title {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--sa-ink) !important;
}

.ashby-application-form-autofill-input-description {
  font-size: 13px !important;
  color: var(--sa-ink-2) !important;
}

/* ══════════════════════════════════════════
   FORM — SUBMIT BUTTON
   Brand: ALL CAPS, Work Sans SemiBold, Teal
══════════════════════════════════════════ */
.ashby-application-form-submit-button,
[class*="_primary_"],
[class*="_button_"][class*="_primary_"],
[class*="_greedy_"] {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background: var(--sa-teal) !important;
  color: var(--sa-bg) !important;
  border: none !important;
  border-radius: var(--borderRadiusButton) !important;
  padding: 14px 32px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background 0.15s, transform 0.1s !important;
}

.ashby-application-form-submit-button:hover,
[class*="_primary_"]:hover {
  background: var(--sa-teal-dark) !important;
}

.ashby-application-form-submit-button:active,
[class*="_primary_"]:active {
  transform: scale(0.99) !important;
}

/* ══════════════════════════════════════════
   FORM — FEEDBACK STATES
══════════════════════════════════════════ */
.ashby-application-form-success-container {
  background: var(--sa-teal-light) !important;
  border: 1px solid rgba(8,98,82,0.2) !important;
  border-radius: var(--borderRadiusContainer) !important;
  padding: var(--sp-8) !important;
  text-align: center !important;
  color: var(--sa-teal) !important;
}

.ashby-application-form-failure-container {
  background: #FEF2F2 !important;
  border: 1px solid #FECACA !important;
  border-radius: var(--borderRadiusContainer) !important;
  padding: var(--sp-6) !important;
  color: #B91C1C !important;
}

.ashby-application-form-autofill-input-form-alert[data-highlight="positive"] {
  background: var(--sa-teal-light) !important;
  color: var(--sa-teal) !important;
  border-radius: var(--borderRadiusButton) !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
}

.ashby-application-form-autofill-input-form-alert[data-highlight="negative"] {
  background: #FEF2F2 !important;
  color: #B91C1C !important;
  border-radius: var(--borderRadiusButton) !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
}

.ashby-application-form-blocked-application-container {
  background: var(--sa-cream) !important;
  border: 1px solid rgba(8,98,82,0.15) !important;
  border-radius: var(--borderRadiusContainer) !important;
  padding: var(--sp-6) !important;
  color: var(--sa-ink-2) !important;
}

.ashby-application-form-texting-consent-description {
  font-size: 12px !important;
  color: var(--sa-ink-3) !important;
  line-height: 1.5 !important;
}

/* ══════════════════════════════════════════
   FIXES — Round 2
══════════════════════════════════════════ */

/* 1. Force EVERYTHING under autofill to #FFFCF0, no white */
.ashby-application-form-container,
.ashby-application-form-container *,
.ashby-application-form-section-container,
.ashby-application-form-section-container * {
  background-color: #FFFCF0 !important;
}

/* Keep autofill box lavender */
.ashby-application-form-autofill-input-root,
.ashby-application-form-autofill-input-root * {
  background-color: #ede8fe !important;
}

/* 2. Gap between left and right pane */
.ashby-job-posting-left-pane {
  padding-right: 48px !important;
}

.ashby-job-posting-right-pane {
  margin-left: 32px !important;
}

/* 3. Narrow the card grid */
.ashby-job-posting-brief-list {
  grid-template-columns: repeat(2, minmax(0, 360px)) !important;
}

/* 4. Job title top padding — separation from back button */
.ashby-job-posting-heading {
  padding-top: 24px !important;
}

/* 5. Align ALL JOBS button and title to same left edge */
.ashby-job-board-back-to-all-jobs-button {
  margin-left: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

/* 6. Hide ghost arrow from invisible filter */
[class*="_filterIconContainer"] {
  display: none !important;
}

/* Radios round, checkboxes keep native square shape */
input[type="radio"] {
  border-radius: 50% !important;
}

input[type="checkbox"] {
  border-radius: 3px !important;
}

/* 8. Yes/No selected text color fix */
[class*="_booleanOption"][aria-checked="true"],
[class*="_segmentedOption"][aria-checked="true"],
[class*="_booleanOption"][data-state="checked"],
[class*="_segmentedOption"][data-state="checked"] {
  background: var(--sa-teal) !important;
  color: #FFFCF0 !important;
  border-color: var(--sa-teal) !important;
}

[class*="_booleanOption"][aria-checked="true"] *,
[class*="_segmentedOption"][aria-checked="true"] * {
  color: #FFFCF0 !important;
}

/* ══════════════════════════════════════════
   NUCLEAR FILTER FIX
   Hide everything except Department
══════════════════════════════════════════ */

/* Hide the entire filter row container */
[class*="_filtersContainer_"],
[class*="_filters_"] {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
  max-width: 280px !important;
}

/* Hide ALL filter dropdowns */
[class*="_filterContainer_"] {
  display: none !important;
  visibility: hidden !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* Show ONLY the Department one */
[class*="_filterContainer_"]:first-child {
  display: block !important;
  visibility: visible !important;
  width: 240px !important;
  height: auto !important;
  overflow: visible !important;
  pointer-events: auto !important;
}

/* Style the Department select */
[class*="_filterContainer_"]:first-child select {
  width: 240px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  background: var(--sa-bg) !important;
  border: 1px solid var(--sa-border) !important;
  border-radius: var(--borderRadiusControl) !important;
  color: var(--sa-ink) !important;
  padding: 10px 36px 10px 14px !important;
  cursor: pointer !important;
}

/* Hide the custom icon containers */
[class*="_filterIconContainer_"] {
  display: none !important;
}

/* ══════════════════════════════════════════
   FORCE RIGHT PANE BACKGROUND
══════════════════════════════════════════ */
.ashby-job-posting-right-pane,
.ashby-job-posting-right-pane > *,
[class*="_rightPane_"],
[class*="_tabContent_"],
[class*="_overview_"],
[class*="_applicationTab_"] {
  background: #FFFCF0 !important;
  background-color: #FFFCF0 !important;
}

/* ══════════════════════════════════════════
   FIXES — Round 3
══════════════════════════════════════════ */

/* 1. White background in application section — nuclear */
.ashby-job-posting-right-pane *,
.ashby-application-form-container *,
[class*="_applicationTab_"] *,
[class*="_tabPanel_"] *,
[class*="_formContent_"] * {
  background-color: #FFFCF0 !important;
}

/* Keep autofill box lavender */
.ashby-application-form-autofill-input-root,
.ashby-application-form-autofill-input-root * {
  background-color: #ede8fe !important;
}

/* 2. Upload file button — teal background, cream text, proper size */
.ashby-application-form-autofill-input-root button,
[class*="_uploadButton"],
[class*="_autofillButton"],
[class*="_fileButton"] {
  background: var(--sa-teal) !important;
  color: #FFFCF0 !important;
  border: none !important;
  border-radius: var(--borderRadiusButton) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 10px 20px !important;
  width: auto !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

.ashby-application-form-autofill-input-root button:hover,
[class*="_uploadButton"]:hover,
[class*="_autofillButton"]:hover {
  background: var(--sa-teal-dark) !important;
  color: #FFFCF0 !important;
}

/* 3. Yes/No buttons — clear selected state */
[class*="_segmented_"],
[class*="_booleanButton_"],
[class*="_booleanGroup_"] button,
[class*="_yesNo_"] button {
  font-size: 13px !important;
  font-weight: 500 !important;
  background: #FFFCF0 !important;
  color: var(--sa-ink) !important;
  border: 1.5px solid var(--sa-border) !important;
  padding: 10px 28px !important;
  cursor: pointer !important;
  transition: all 0.15s !important;
}

[class*="_booleanGroup_"] button[data-state="on"],
[class*="_booleanGroup_"] button[aria-pressed="true"],
[class*="_booleanGroup_"] button[data-selected="true"],
[class*="_segmented_"] button[data-state="on"],
[class*="_segmented_"] button[aria-pressed="true"] {
  background: var(--sa-teal) !important;
  color: #FFFCF0 !important;
  border-color: var(--sa-teal) !important;
}

/* 4. Radio selected state — visible filled dot */
input[type="radio"]:checked {
  outline: 3px solid var(--sa-teal) !important;
  outline-offset: 2px !important;
  accent-color: var(--sa-teal) !important;
}

input[type="radio"]:checked + label,
input[type="radio"]:checked ~ label {
  color: var(--sa-teal) !important;
  font-weight: 600 !important;
}

/* 5. Checkboxes — force square with no border-radius */
input[type="checkbox"] {
  border-radius: 0 !important;
  accent-color: var(--sa-teal) !important;
  width: 16px !important;
  height: 16px !important;
}

input[type="checkbox"]:checked + label,
input[type="checkbox"]:checked ~ label {
  color: var(--sa-teal) !important;
  font-weight: 600 !important;
}

/* ══════════════════════════════════════════
   UPLOAD FILE BUTTON — filled teal
══════════════════════════════════════════ */
[class*="_uploadButton_"],
[class*="_fileUpload_"] button,
[class*="_upload_"] button,
.ashby-application-form-autofill-uploader button,
button[class*="_upload"],
button[class*="_file"] {
  background: var(--sa-teal) !important;
  background-color: var(--sa-teal) !important;
  color: #FFFCF0 !important;
  border: none !important;
  border-radius: var(--borderRadiusButton) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 10px 24px !important;
  width: auto !important;
  cursor: pointer !important;
}

button[class*="_upload"]:hover,
button[class*="_file"]:hover,
[class*="_uploadButton_"]:hover {
  background: var(--sa-teal-dark) !important;
  background-color: var(--sa-teal-dark) !important;
  color: #FFFCF0 !important;
}

/* ══════════════════════════════════════════
   FORM FIELD TYPOGRAPHY HIERARCHY
   Title bold, description lighter
══════════════════════════════════════════ */

/* Field label / title — bold, dark, prominent */
.ashby-application-form-question-title,
.ashby-application-form-field-entry > label:first-of-type {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: var(--sa-ink) !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 6px !important;
  display: block !important;
}

/* Description under title — lighter, smaller, muted */
.ashby-application-form-question-description {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--sa-ink-3) !important;
  line-height: 1.6 !important;
  margin-bottom: 12px !important;
}

/* "or drag and drop here" text */
[class*="_dragText_"],
[class*="_dropText_"],
[class*="_orText_"] {
  font-size: 13px !important;
  color: var(--sa-ink-3) !important;
  font-weight: 400 !important;
}

/* ══════════════════════════════════════════
   UPLOAD BUTTON — exact class from inspector
══════════════════════════════════════════ */
[class*="_secondary_"] {
  background: var(--sa-teal) !important;
  background-color: var(--sa-teal) !important;
  color: #FFFCF0 !important;
  border: none !important;
  border-radius: var(--borderRadiusButton) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  padding: 10px 20px !important;
  width: auto !important;
  cursor: pointer !important;
}

[class*="_secondary_"]:hover {
  background: var(--sa-teal-dark) !important;
  background-color: var(--sa-teal-dark) !important;
  color: #FFFCF0 !important;
}

[class*="_secondary_"] span,
[class*="_secondary_"] svg {
  color: #FFFCF0 !important;
  fill: #FFFCF0 !important;
}

/* ══════════════════════════════════════════
   CHECKBOX — exact class from inspector
   Hide the custom SVG checkbox, show native
══════════════════════════════════════════ */
[class*="_container_1hpbx"] svg {
  display: none !important;
}

[class*="_container_1hpbx"] input[type="checkbox"] {
  display: block !important;
  width: 16px !important;
  height: 16px !important;
  border-radius: 0 !important;
  accent-color: var(--sa-teal) !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
}

[class*="_option_1v5e2"] {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 8px !important;
}

[class*="_label_1v5e2"] {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--sa-ink) !important;
  cursor: pointer !important;
}

/* ══════════════════════════════════════════
   UPLOAD BUTTON — fix text visibility
══════════════════════════════════════════ */
[class*="_secondary_"] {
  background: var(--sa-teal) !important;
  color: #FFFCF0 !important;
  border: none !important;
  padding: 10px 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

[class*="_secondary_"] span span {
  color: #FFFCF0 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

[class*="_secondary_"] svg {
  display: none !important;
}

/* ══════════════════════════════════════════
   OPTION SELECTED STATE
   Ashby uses custom SVG — style the whole row
══════════════════════════════════════════ */
[class*="_option_"] {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px 12px !important;
  border-radius: 8px !important;
  margin-bottom: 4px !important;
  cursor: pointer !important;
  transition: background 0.15s !important;
}

[class*="_option_"]:hover {
  background: var(--sa-teal-light) !important;
}

/* Selected option — teal background row */
[class*="_option_"]:has(input:checked),
[class*="_option_"][data-selected="true"],
[class*="_option_"][aria-selected="true"] {
  background: var(--sa-teal-light) !important;
}

[class*="_option_"]:has(input:checked) [class*="_label_"],
[class*="_option_"]:has(input:checked) label {
  color: var(--sa-teal) !important;
  font-weight: 600 !important;
}

/* SVG checkmark — teal when selected */
[class*="_container_"][data-disabled="false"] svg path {
  fill: var(--sa-teal) !important;
}

/* Unselected circle border */
[class*="_container_"][data-disabled="false"] svg {
  color: var(--sa-border) !important;
}

/* ══════════════════════════════════════════
   CHECKBOX — hide SVG overlay, show native
   Exact class from inspector: _container_1hpbx_29
══════════════════════════════════════════ */
[class*="_container_1hpbx"] {
  position: relative !important;
  width: 18px !important;
  height: 18px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

[class*="_container_1hpbx"] svg {
  display: none !important;
  visibility: hidden !important;
  position: absolute !important;
  pointer-events: none !important;
}

[class*="_container_1hpbx"] input[type="checkbox"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 3px !important;
  accent-color: var(--sa-teal) !important;
  cursor: pointer !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 1 !important;
}

/* ══════════════════════════════════════════
   UPLOAD BUTTON — final fix
   Hide the file input showing inside button
══════════════════════════════════════════ */
[class*="_secondary_"] input[type="file"],
[class*="_secondary_"] input {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  position: absolute !important;
}

[class*="_secondary_"] span span {
  display: block !important;
  color: #FFFCF0 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
}

/* Drag instructions text */
[class*="_dragInstructions_"] {
  font-size: 13px !important;
  color: var(--sa-ink-3) !important;
  font-weight: 400 !important;
}

/* ══════════════════════════════════════════
   YES/NO — solid fill when selected
══════════════════════════════════════════ */
[class*="_booleanButton_"],
[class*="_segmentedButton_"],
[class*="_boolean_"] button {
  background: #FFFCF0 !important;
  color: var(--sa-ink) !important;
  border: 1.5px solid var(--sa-border) !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 10px 28px !important;
  cursor: pointer !important;
  transition: all 0.15s !important;
  min-width: 80px !important;
}

[class*="_booleanButton_"][data-state="on"],
[class*="_booleanButton_"][aria-checked="true"],
[class*="_booleanButton_"][data-active="true"],
[class*="_segmentedButton_"][data-state="on"],
[class*="_boolean_"] button[data-state="on"],
[class*="_boolean_"] button[aria-checked="true"] {
  background: var(--sa-teal) !important;
  background-color: var(--sa-teal) !important;
  color: #FFFCF0 !important;
  border-color: var(--sa-teal) !important;
}

/* ══════════════════════════════════════════
   RADIO — exact classes from inspector
══════════════════════════════════════════ */

/* Unselected circle */
[class*="_circle_ruukg"] {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  border: 2px solid var(--sa-border) !important;
  background: #FFFCF0 !important;
  flex-shrink: 0 !important;
}

/* Selected container */
[class*="_checked_ruukg"] [class*="_circle_ruukg"] {
  border-color: var(--sa-teal) !important;
  background: var(--sa-teal) !important;
  box-shadow: inset 0 0 0 4px #FFFCF0 !important;
}

/* Selected option row */
[class*="_option_1v5e2"][class*="true"],
div[class*="_option_1v5e2_35"][class*=" true"] {
  background: var(--sa-teal-light) !important;
  border-radius: 8px !important;
}

/* Selected label */
[class*="_checked_1v5e2"] {
  color: var(--sa-teal) !important;
  font-weight: 600 !important;
}

/* Hide native radio input — we're using the custom circle */
[class*="_container_ruukg"] input[type="radio"] {
  display: none !important;
}

/* ══════════════════════════════════════════
   RADIO CIRCLE SIZE FIX
══════════════════════════════════════════ */
[class*="_circle_ruukg"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  flex-shrink: 0 !important;
}

[class*="_container_ruukg"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  flex-shrink: 0 !important;
}

[class*="_option_1v5e2"] {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 14px !important;
}

/* ══════════════════════════════════════════
   RADIO CIRCLE — clean fix, no overlap
══════════════════════════════════════════ */

/* Unselected */
[class*="_circle_ruukg"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  border-radius: 50% !important;
  border: 2px solid #ccc !important;
  background: #FFFCF0 !important;
  box-shadow: none !important;
  flex-shrink: 0 !important;
}

/* Selected — just a teal border with teal dot in center */
[class*="_checked_ruukg"] [class*="_circle_ruukg"] {
  border: 2px solid var(--sa-teal) !important;
  background: #FFFCF0 !important;
  box-shadow: none !important;
  position: relative !important;
}

[class*="_checked_ruukg"] [class*="_circle_ruukg"]::after {
  content: '' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--sa-teal) !important;
}

/* Remove the teal row background highlight entirely */
[class*="_option_1v5e2"][class*="true"],
div[class*="_option_1v5e2_35"][class*=" true"] {
  background: transparent !important;
}

/* ══════════════════════════════════════════
   OPTION SELECTED ROW — remove highlight
   Just change the text color, no background
══════════════════════════════════════════ */
[class*="_option_1v5e2"] {
  background: transparent !important;
  border-radius: 8px !important;
}

[class*="_option_1v5e2"]:hover {
  background: transparent !important;
}

[class*="_option_1v5e2"][class*="true"],
div[class*="_option_1v5e2_35"][class*=" true"] {
  background: transparent !important;
}

/* Selected label — just bold teal text, nothing else */
[class*="_checked_1v5e2"],
[class*="_label_1v5e2"][class*="_checked"] {
  color: var(--sa-teal) !important;
  font-weight: 600 !important;
  background: transparent !important;
}

/* ══════════════════════════════════════════
   MAKE ENTIRE OPTION ROW CLICKABLE
══════════════════════════════════════════ */
[class*="_option_1v5e2"] {
  cursor: pointer !important;
  position: relative !important;
}

[class*="_option_1v5e2"] label {
  cursor: pointer !important;
  display: block !important;
  width: 100% !important;
  position: static !important;
}

/* Extend the label click area to cover the whole row */
[class*="_label_1v5e2"] {
  cursor: pointer !important;
  flex: 1 !important;
  padding: 4px 0 !important;
}

/* ══════════════════════════════════════════
   CHECKBOX SELECTED — match radio style
   No background, just teal bold text
══════════════════════════════════════════ */
[class*="_option_1v5e2"] {
  background: transparent !important;
}

[class*="_option_1v5e2"]:hover {
  background: transparent !important;
}

[class*="_option_1v5e2"][class*="true"],
[class*="_option_1v5e2_35"][class*="true"] {
  background: transparent !important;
}

[class*="_checked_1v5e2"],
[class*="_label_1v5e2"][class*="_checked"] {
  color: var(--sa-teal) !important;
  font-weight: 600 !important;
  background: transparent !important;
}

/* ══════════════════════════════════════════
   UPLOAD BUTTON — show text, hide file input
══════════════════════════════════════════ */

/* The white box is a file input bleeding through — hide it */
[class*="_secondary_"] input[type="file"] {
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  pointer-events: none !important;
}

/* Make sure all spans inside button are visible */
[class*="_secondary_"] span,
[class*="_secondary_"] span span {
  display: inline !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #FFFCF0 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  background: transparent !important;
}

/* Hide the SVG icon */
[class*="_secondary_"] > svg {
  display: none !important;
}

/* ══════════════════════════════════════════
   YES/NO — exact classes from inspector
══════════════════════════════════════════ */
[class*="_yesno_"] {
  display: flex !important;
  gap: 8px !important;
}

[class*="_option_y2cw4"] {
  background: #FFFCF0 !important;
  color: var(--sa-ink) !important;
  border: 1.5px solid var(--sa-border) !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 10px 28px !important;
  cursor: pointer !important;
  transition: all 0.15s !important;
  min-width: 80px !important;
  text-align: center !important;
}

[class*="_option_y2cw4"]:hover {
  border-color: var(--sa-teal) !important;
  background: var(--sa-teal-light) !important;
}

/* Hide the checkbox input inside yes/no */
[class*="_input_y2cw4"] {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* ══════════════════════════════════════════
   SUBMIT BUTTON — fix white boxes inside
══════════════════════════════════════════ */
[class*="_submitButton_"] {
  background: var(--sa-teal) !important;
  color: #FFFCF0 !important;
  border: none !important;
  position: relative !important;
  overflow: hidden !important;
}

[class*="_submitButton_"] input,
[class*="_submitButton_"] input[type="file"],
[class*="_submitButton_"] input[type="checkbox"] {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  position: absolute !important;
  pointer-events: none !important;
}

[class*="_submitButton_"] span,
[class*="_submitButton_"] span span {
  color: #FFFCF0 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  background: transparent !important;
  display: inline !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* ══════════════════════════════════════════
   YES/NO SELECTED — exact active class
══════════════════════════════════════════ */
[class*="_active_y2cw4"] {
  background: var(--sa-teal) !important;
  background-color: var(--sa-teal) !important;
  color: #FFFCF0 !important;
  border-color: var(--sa-teal) !important;
  font-weight: 600 !important;
}

[class*="_active_y2cw4"]:hover {
  background: var(--sa-teal-dark) !important;
  color: #FFFCF0 !important;
}

/* ══════════════════════════════════════════
   YES/NO — fix width and active state
══════════════════════════════════════════ */
[class*="_yesno_"] {
  display: flex !important;
  gap: 8px !important;
  width: fit-content !important;
}

[class*="_option_y2cw4"] {
  width: 100px !important;
  min-width: 80px !important;
  max-width: 120px !important;
  flex: 0 0 auto !important;
  text-align: center !important;
  padding: 10px 20px !important;
  background: #FFFCF0 !important;
  color: var(--sa-ink) !important;
  border: 1.5px solid var(--sa-border) !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.15s !important;
}

[class*="_option_y2cw4"]:hover {
  border-color: var(--sa-teal) !important;
}

[class*="_active_y2cw4"] {
  background: var(--sa-teal) !important;
  background-color: var(--sa-teal) !important;
  color: #FFFCF0 !important;
  border-color: var(--sa-teal) !important;
  font-weight: 600 !important;
}

/* ══════════════════════════════════════════
   YES/NO — keep wide, just fix active state
══════════════════════════════════════════ */
[class*="_option_y2cw4"] {
  width: auto !important;
  flex: 1 !important;
  max-width: unset !important;
  min-width: unset !important;
}

/* ══════════════════════════════════════════
   YES/NO — proper sizing, no text wrap
══════════════════════════════════════════ */
[class*="_yesno_"] {
  display: flex !important;
  gap: 8px !important;
  width: 100% !important;
  max-width: 400px !important;
}

[class*="_option_y2cw4"] {
  flex: 1 !important;
  width: auto !important;
  min-width: 120px !important;
  max-width: unset !important;
  padding: 12px 24px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-align: center !important;
  border-radius: 8px !important;
  border: 1.5px solid var(--sa-border) !important;
  background: #FFFCF0 !important;
  color: var(--sa-ink) !important;
  cursor: pointer !important;
  transition: all 0.15s !important;
}

[class*="_active_y2cw4"] {
  background: var(--sa-teal) !important;
  background-color: var(--sa-teal) !important;
  color: #FFFCF0 !important;
  border-color: var(--sa-teal) !important;
  font-weight: 600 !important;
}

/* ══════════════════════════════════════════
   1. CARD GRID — match department heading width, centered
══════════════════════════════════════════ */
.ashby-job-posting-brief-list {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ══════════════════════════════════════════
   2. LEFT PANE — hide first 3 sections, show last 2
   (Location, Employment Type, Location Type hidden)
   (Department, Compensation shown)
══════════════════════════════════════════ */
[class*="_section_101oc"]:nth-child(1),
[class*="_section_101oc"]:nth-child(2),
[class*="_section_101oc"]:nth-child(3) {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ══════════════════════════════════════════
   3. SECTION HEADER TITLE — same style as description but bold
══════════════════════════════════════════ */
[class*="_title_135ul_100"],
.ashby-application-form-section-header-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--sa-ink-3) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 4px !important;
}

[class*="_sectionDescription_135ul"],
.ashby-application-form-section-header-description {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--sa-ink-3) !important;
  margin-bottom: 20px !important;
}

/* ══════════════════════════════════════════
   DEPARTMENT FILTER — add dropdown arrow
══════════════════════════════════════════ */
select[aria-label="Department"],
[class*="_filter_1cp2r"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A9994' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 36px !important;
  cursor: pointer !important;
}

/* ══════════════════════════════════════════
   CARD DETAILS — hide location, keep dept + compensation
   The details <p> contains all info separated by •
   We can't remove partial text with CSS alone,
   so we hide the entire first <p> and keep _detailsCompensation_
══════════════════════════════════════════ */
[class*="_details_1cp2r"] p:first-child {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
  margin: 0 !important;
}

[class*="_detailsCompensation_"] {
  display: block !important;
  visibility: visible !important;
  font-family: var(--sa-mono) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  color: var(--sa-ink-3) !important;
  margin-top: auto !important;
}

/* ══════════════════════════════════════════
   CONSISTENT ALIGNMENT — all elements same edge
══════════════════════════════════════════ */
[class*="_content_ud4nd"],
[class*="_container_ud4nd"] {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* Department heading, filter, card grid all same width */
.ashby-job-board-heading,
[class*="_filtersContainer_"],
[class*="_filters_"],
[class*="_departments_"],
.ashby-job-posting-brief-list,
.ashby-department-heading,
.ashby-job-posting-brief-department-heading {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ══════════════════════════════════════════
   CARD HEIGHT — tighten up now details are hidden
══════════════════════════════════════════ */
.ashby-job-posting-brief {
  min-height: unset !important;
  height: auto !important;
  padding: 20px 24px !important;
}

/* ══════════════════════════════════════════
   DEPARTMENT FILTER ARROW — force via wrapper
══════════════════════════════════════════ */
[class*="_filterContainer_"]:first-child {
  position: relative !important;
  display: inline-block !important;
  width: 280px !important;
}

[class*="_filterContainer_"]:first-child::after {
  content: '' !important;
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) rotate(45deg) !important;
  width: 7px !important;
  height: 7px !important;
  border-right: 2px solid var(--sa-ink-3) !important;
  border-bottom: 2px solid var(--sa-ink-3) !important;
  pointer-events: none !important;
}

[class*="_filterContainer_"]:first-child select {
  width: 100% !important;
  padding-right: 36px !important;
}

/* ══════════════════════════════════════════
   SUBMIT BUTTON — hide all child inputs/checkboxes
══════════════════════════════════════════ */
.ashby-application-form-submit-button input,
.ashby-application-form-submit-button input[type="checkbox"],
.ashby-application-form-submit-button input[type="file"],
[class*="_submitButton_"] input,
[class*="_submitButton_"] input[type="checkbox"],
[class*="_primary_"][class*="_greedy_"] input,
[class*="_primary_"][class*="_greedy_"] input[type="checkbox"] {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  position: absolute !important;
  pointer-events: none !important;
}

/* ══════════════════════════════════════════
   CARD — remove empty space, hug content
══════════════════════════════════════════ */
.ashby-job-posting-brief {
  min-height: unset !important;
  height: auto !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  padding: 20px 24px !important;
}

.ashby-job-posting-brief-title {
  margin-bottom: 4px !important;
}

[class*="_details_1cp2r"] {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

[class*="_detailsCompensation_"] {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ══════════════════════════════════════════
   FULL PAGE CENTERING — push everything to center
══════════════════════════════════════════ */
[class*="_container_ud4nd"],
[class*="_section_1cp2r"],
[class*="_content_"] {
  max-width: 1100px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100% !important;
  padding-left: 48px !important;
  padding-right: 48px !important;
}

/* Make the job board itself centered */
[class*="_navRoot_"],
[class*="_container_ud4nd"] {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
}

[class*="_section_1cp2r_341"] {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 48px !important;
}

/* ══════════════════════════════════════════
   ALIGNMENT — force all children of the main
   content wrapper to same width + position
══════════════════════════════════════════ */

/* Target the main wrapper Ashby uses */
[class*="_content_ud4nd"] > *,
[class*="_section_1cp2r"] > * {
  max-width: 900px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Filters label + filter row */
[class*="_filtersContainer_"],
[class*="_titlesContainer_"],
[class*="_titles_"] {
  max-width: 900px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Department sections */
[class*="_departments_"] {
  max-width: 900px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Card grid */
.ashby-job-posting-brief-list {
  max-width: 900px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Department headings */
.ashby-department-heading,
[class*="_departmentHeading_"] {
  max-width: 900px !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ══════════════════════════════════════════
   FIX CHECKBOX — remove circle bleed
   The radio ::after pseudo is applying to checkboxes too
══════════════════════════════════════════ */
[class*="_container_1hpbx"] [class*="_circle_ruukg"],
[class*="_container_1hpbx"] [class*="_circle_ruukg"]::after {
  display: none !important;
  content: none !important;
}

[class*="_container_1hpbx"] input[type="checkbox"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 16px !important;
  height: 16px !important;
  accent-color: var(--sa-teal) !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ══════════════════════════════════════════
   JOB DETAIL — more breathing room
══════════════════════════════════════════ */
.ashby-job-posting-heading {
  padding-top: 32px !important;
  margin-bottom: 32px !important;
}

.ashby-job-posting-left-pane {
  padding-right: 56px !important;
  padding-top: 16px !important;
}

.ashby-job-posting-right-pane {
  margin-left: 24px !important;
}

.ashby-job-posting-header {
  padding: 48px 48px 32px !important;
  margin-bottom: 40px !important;
}

/* ══════════════════════════════════════════
   CHECKBOX — hide ALL SVGs, show native only
══════════════════════════════════════════ */
[class*="_container_1hpbx"] {
  position: relative !important;
  width: 18px !important;
  height: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

[class*="_container_1hpbx"] * {
  display: none !important;
}

[class*="_container_1hpbx"] input[type="checkbox"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 18px !important;
  height: 18px !important;
  accent-color: var(--sa-teal) !important;
  cursor: pointer !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  z-index: 2 !important;
}

/* ══════════════════════════════════════════
   1. CHECKBOX — remove lavender circle bg
══════════════════════════════════════════ */
[class*="_container_1hpbx"],
[class*="_container_1hpbx"] span,
[class*="_container_1hpbx"] > * {
  background: transparent !important;
  background-color: transparent !important;
}

/* ══════════════════════════════════════════
   2. SELECTED STATE — both radio and checkbox
   Teal fill row + teal bold text
══════════════════════════════════════════ */

/* Selected checkbox row */
[class*="_option_1v5e2"]:has(input:checked) {
  background: var(--sa-teal-light) !important;
  border-radius: 10px !important;
}

/* Selected radio row — Ashby adds _checked_ class to the option div */
[class*="_option_1v5e2_35"][class$="true"],
[class*="_option_1v5e2"][class*="true"] {
  background: var(--sa-teal-light) !important;
  border-radius: 10px !important;
}

/* Selected label text */
[class*="_checked_1v5e2"],
[class*="_option_1v5e2"]:has(input:checked) [class*="_label_"] {
  color: var(--sa-teal) !important;
  font-weight: 600 !important;
}

/* ══════════════════════════════════════════
   3. SUBMIT BUTTON — hide white square
   Target the checkbox input specifically
══════════════════════════════════════════ */
[class*="_greedy_"] input,
[class*="_greedy_"] input[type="checkbox"],
[class*="_submitButton_"] input,
[class*="_submitButton_"] input[type="checkbox"],
[class*="_primary_"][class*="_greedy_"] ~ input,
[class*="_primary_"] input[type="checkbox"] {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
  pointer-events: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* ══════════════════════════════════════════
   CHECKBOX CONTAINER — kill lavender circle
   Exact class: _container_1hpbx_29
══════════════════════════════════════════ */
[class*="_container_1hpbx_29"],
span[class*="_container_1hpbx"] {
  background: transparent !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: 18px !important;
  height: 18px !important;
  padding: 0 !important;
}

/* Hide the SVG checkmark inside — show native checkbox */
span[class*="_container_1hpbx"] svg {
  display: none !important;
}

span[class*="_container_1hpbx"] input[type="checkbox"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 18px !important;
  height: 18px !important;
  accent-color: var(--sa-teal) !important;
  cursor: pointer !important;
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
  z-index: 2 !important;
  background: transparent !important;
}

/* ══════════════════════════════════════════
   SUBMIT BUTTON — hide white square
   It's a checkbox input sibling to the button text
══════════════════════════════════════════ */
[class*="_button_8wvgw"][class*="_primary_"][class*="_greedy_"] input[type="checkbox"],
[class*="_button_8wvgw"][class*="_primary_"][class*="_greedy_"] input {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  position: absolute !important;
  pointer-events: none !important;
}

/* ══════════════════════════════════════════
   SUBMIT BUTTON — hide the icon SVG
══════════════════════════════════════════ */
[class*="_submitButton_"] svg,
[class*="_primary_"][class*="_greedy_"] svg {
  display: none !important;
}

/* ══════════════════════════════════════════
   CHECKBOX — fix oversized container
══════════════════════════════════════════ */
span[class*="_container_1hpbx"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  min-height: 18px !important;
  max-height: 18px !important;
  background: transparent !important;
  background-color: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}
