/* stylelint-disable */
/* This file is not directly included in react but uploaded to Ashby */

/* These variables can be used to control values throughout the job board. */
:root {
  /*  Darker primary color
    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: hsl(0 0% 11%);

  /*  Lighter primary color
    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: hsl(60 1% 37%);

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

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

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

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

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

  /*  Font families */
  --fontFamily: "Camera Plain Variable", ui-sans-serif, system-ui, sans-serif;
  --colorAppBackground: hsl(45 40% 98%);

  --colorNeutral000: #fcfbf8;
  --backgroundMuted: hsl(42 38% 95%);
  --backgroundMutedHover: #d8d6cf;
  --colorNeutralShadow: rgb(28 26 51 / 10%);
  --colorPrimaryShadow: rgb(24 20 87 / 15%);
  --colorBorder: hsl(45 17% 91%);
  --borderWidthBold: 1px;
}

/* Force a solid black background inside the Ashby iframe */

/* Application autofill input's base layer element. This contains standard copy, a CTA button, and potential validation alerts. */
.ashby-application-form-autofill-input-base-layer {
}

/* Application autofill input's description. */
.ashby-application-form-autofill-input-description {
}

/* Application autofill input's drag state overlay element. Can style [data-state] which can be 'active' or 'hidden'. */
.ashby-application-form-autofill-input-drag-layer {
}

/* Application autofill input form's alert element. Can style [data-highlight] which can be 'negative' or 'positive'. */
.ashby-application-form-autofill-input-form-alert {
}

/* Application autofill input's magic sparkles icon. */
.ashby-application-form-autofill-input-icon {
}

/* Application autofill input's pending state overlay element. Can style [data-state] which can be 'active' or 'hidden'.
.ashby-application-form-autofill-input-pending-layer {}

/* Application autofill input's root element. Can style [data-state] which can be 'pending', 'drag', or 'default'. */
.ashby-application-form-autofill-input-root {
}

/* Application autofill input's title. */
.ashby-application-form-autofill-input-title {
}

/* Container element for application autofill input form. */
.ashby-application-form-autofill-pane {
}

/* The resume uploader to auto-fill the application form */
.ashby-application-form-autofill-uploader {
}

/* A container for displaying the custom message to the user */
.ashby-application-form-blocked-application-container {
}

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

/* 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 text message consent description. Displayed below phone number fields. Will only show if texting is enabled. */
.ashby-application-form-texting-consent-description {
}

/* The heading of a department, which can have many teams under it. */
.ashby-department-heading {
  color: var(--colorPrimary600);
  font-size: 20px;
}

/* The heading of a single team. */
.ashby-department-heading-level {
  color: var(--colorPrimary600);
  font-size: 20px;
}

/* The button which allows users to navigate from an individual posting back to the list of all job postings. */
.ashby-job-board-back-to-all-jobs-button {
}

/* The 'Filters' label element in the job board. */
.ashby-job-board-filters-label {
}

/* The heading of the entire job board. */
.ashby-job-board-heading {
  color: var(--colorPrimary900);
  font-size: 1.875rem;
  text-align: center;
}

/* The count of job postings on the job board. */
.ashby-job-board-heading-count {
  color: var(--colorPrimary600);
  font-size: 1.25rem;
}

.ashby-job-board-heading {
  color: var(--colorPrimary900);
}

/* The 'Reset filters' label element in the job board. The reset filters label element in the job board. */
.ashby-job-board-reset-filters-label {
  color: var(--colorNeutral600);
}

/* 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(--backgroundMuted);
  border: 1px solid var(--colorBorder) !important;
  border-top: 1px solid var(--colorBorder) !important;
  box-shadow: none !important;
  padding: var(--spacingLarge) var(--spacingLarge);
}
.ashby-job-posting-brief:hover {
  background-color: var(--backgroundMutedHover);
}

/* 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 {
  font-weight: 600;
}

/* The main header on the job posting page */
.ashby-job-posting-header {
}

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

/* The left pane of the job posting, with the job posting details */
.ashby-job-posting-left-pane {
  box-shadow: none !important;
}

/* The right pane of the job posting, containing the tabs, overview, and application form */
.ashby-job-posting-right-pane {
  box-shadow: none !important;
}

.ashby-job-posting-right-pane > nav,
.ashby-job-posting-right-pane > div {
  box-shadow: none !important;
}

/* The application tab in the right pane of the job posting */
.ashby-job-posting-right-pane-application-tab {
}

/* The overview tab in the right pane of the job posting */
.ashby-job-posting-right-pane-overview-tab {
}

/* The tabs slider in the right pane of the job posting */
.ashby-job-posting-right-pane-tab-slider {
}

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

/* ========= Lovable Dark Theme Overrides ========= */

/* Headings and key labels */
h1,
h2,
h3,
h4,
h5,
h6,
.ashby-job-board-heading,
.ashby-department-heading,
.ashby-department-heading-level,
.ashby-job-posting-brief-title,
.ashby-job-posting-heading {
}

/* Jobâ€‘posting panes */
.ashby-job-posting-left-pane,
.ashby-job-posting-right-pane {
}

/* Posting list items */
.ashby-job-posting-brief {
}
.ashby-job-posting-brief:hover {
}

/* Filter controls */
.ashby-job-board-filter {
}

/* Buttons */
button,
.ashby-application-form-submit-button {
  border-radius: var(--borderRadiusButton);
  padding: 10px 16px;
  font-weight: 600;
}
button:hover,
.ashby-application-form-submit-button:hover {
}

/* Links */
a {
}
a:hover {
  text-decoration: underline;
}

/* Applicationâ€‘form darkâ€‘mode fixes */
.ashby-application-form-container,
.ashby-application-form-section-container,
.ashby-application-form-failure-container,
.ashby-application-form-success-container,
.ashby-application-form-autofill-pane,
.ashby-application-form-blocked-application-container {
}

/* Optional: make inner headings consistent */
.ashby-application-form-section-header-title,
.ashby-application-form-question-title {
}

/* Force the application + overview tab panels to dark mode */
.ashby-job-posting-right-pane-application-tab,
.ashby-job-posting-right-pane-overview-tab {
  box-shadow: none !important; /* remove light card styling */
  border: none !important;
}

.ashby-job-posting-right-pane > nav,
.ashby-job-posting-right-pane > div {
  background: transparent !important;
  background-color: transparent !important;
}

/* .ashby-job-posting-right-pane > nav > a[aria-selected="false"] {
  border-bottom: 3px solid lightgrey !important;
} */

.ashby-job-posting-right-pane > nav > a[aria-selected="true"] {
}

/* .ashby-job-posting-right-pane > nav > a:hover {
  border-bottom: 3px solid white !important;
} */

.ashby-application-form-autofill-pane,
.ashby-application-form-autofill-input-root,
.ashby-application-form-autofill-input-base-layer,
.ashby-application-form-autofill-input-drag-layer,
.ashby-application-form-autofill-input-pending-layer {
  box-shadow: none !important;
}

/* Copy and helper text inside the widget */
.ashby-application-form-autofill-input-title,
.ashby-application-form-autofill-input-description {
}

/* Upload button inside resumeâ€‘autofill */
.ashby-application-form-autofill-uploader {
  border-radius: var(--borderRadiusButton);
}

.ashby-application-form-field-entry > input,
.ashby-application-form-field-entry > textarea {
  border: var(--borderWidthNormal) solid var(--colorBorder) !important;
  border-radius: var(--borderRadiusControl) !important;
  font-size: 1rem !important;
  outline: none !important;
  padding: 12px 16px !important;
  background-color: var(--backgroundMuted) !important;
}

.ashby-application-form-field-entry > input:focus,
.ashby-application-form-field-entry > textarea:focus {
  border-color: var(--colorPrimary600) !important;
}
