/* stylelint-disable */

/* These variables can be used to control values throughout the job board. */
:root {
  /*  Darker primary color (used for hover/active states on primary elements)
  WARNING - This can be set in the Ashby admin under theme settings!
  If you modify, you should make sure your colors work with the settings there. */
  --colorPrimary900: #5B21B6;

  /*  Lighter primary color - Rad AI purple, used for job titles, links, and accents
  WARNING - This can be set in the Ashby admin under theme settings!
  If you modify, you should make sure your colors work with the settings there. */
  --colorPrimary600: #794BFB;

  /* Light-theme neutral scale, lightest to darkest. These drive dropdown filters,
  borders, and hover states throughout the job board. */
  --colorNeutral000: #FCFCFE;

  --colorNeutral100: #F1EDFE;

  --colorNeutral300: #DBDBDC;

  --colorNeutral700: #717075;

  --colorNeutral800: #373739;

  --colorNeutral900: #141415;

  /*  The max width of the job board container */
  --widthMaxJobBoard: 800px;

  /*  The max width of the application form section */
  /* --widthMaxJobBoard: 800px; */

  /*  Container border radius */
  --borderRadiusContainer: 10px;

  /*  Border radius of control elements (e.g. input boxes) */
  --borderRadiusControl: 10px;

  /*  Button border radius */
  --borderRadiusButton: 10px;

  /*  Font families */
   --fontFamily: "Inter", sans-serif;

  --colorAppBackground: #F5F7FF;
}

/* A container for the application form. */
.ashby-application-form-container {
  background-color: var(--colorAppBackground) !important;
}

/* A container for the failure message */
.ashby-application-form-failure-container {}

/* A container for the label and input on an application form. */
.ashby-application-form-field-entry {}

/* The description of each question on an application form. Will only show if a description is specified. */
.ashby-application-form-question-description {}

/* The title of each question on an application form. */
.ashby-application-form-question-title {}

/* A single section on the Ashby application form. All questions will be wrapped in sections, though the default section may not have a title. */
.ashby-application-form-section-container {}

/* The header for an application form section, possibly containing a title and description. */
.ashby-application-form-section-header {}

/* The description for an application form section. May not exist if no description was specified. */
.ashby-application-form-section-header-description {}

/* The title for an application form section. May not exist for the default section. */
.ashby-application-form-section-header-title {}

/* The application submission button. Will have loading and hover states that should be tested. */
.ashby-application-form-submit-button {}

/* A container for the success message */
.ashby-application-form-success-container {}

/* The heading of a department, which can have many teams under it. */
.ashby-department-heading {
  color: #794BFB !important;
}

/* The heading of a single team. */
.ashby-department-heading-level {
  font-size: large !important;
  flex-basis: auto !important;
}



/* A select box element for filtering the job board. */
.ashby-job-board-filter {}

/* The heading of the entire job board. */
.ashby-job-board-heading {}

/* The count of job postings on the job board. */
.ashby-job-board-heading-count {}

/* The container of the job posting details pane. */
.ashby-job-posting-brief {
  /* This adds some space between posting briefings. */
  margin-bottom: 10px;
  background-color: var(--colorAppBackground) !important;
  transition: background-color 0.15s ease;
}

/* A subtle purple-tinted hover/active state, similar to ashbyhq.com/careers */
.ashby-job-posting-brief:hover,
.ashby-job-posting-brief:active {
  background-color: var(--colorNeutral100) !important;
}

/* The heading of a department name. Departments group teams. */
.ashby-job-posting-brief-department-heading {}

/* The heading of a single team. */
.ashby-job-posting-brief-department-heading-level {}

/* The container for the details of the job posting, in the details pane. */
.ashby-job-posting-brief-details {}

/* The container for the list of job post briefings. */
.ashby-job-posting-brief-list {}

/* The title of the job posting in the details pane. */
.ashby-job-posting-brief-title {
  color: black !important;
}

/* The heading of a job post */
.ashby-job-posting-heading {}

/* The left-hand sidebar on a single job posting page (location, employment type, etc.) */
.ashby-job-posting-left-pane {
  background-color: var(--colorAppBackground) !important;
}

/* The job description box on the Overview tab of a single job posting */
.ashby-job-posting-description-container {
  background-color: var(--colorAppBackground) !important;
}

/* The "Autofill from resume" box on the Application tab */
.ashby-application-form-autofill-pane {
  background-color: var(--colorAppBackground) !important;
}

/* The inner card inside the autofill pane that actually shows the white background */
.ashby-application-form-autofill-input-root {
  background-color: var(--colorAppBackground) !important;
}

/* A container for any surveys specified for this application form. */
.ashby-survey-form-container {}

textarea {
  color: var(--colorNeutral900);
}
