/* stylelint-disable */

/* These variables can be used to control values throughout the job board. */
:root {
  /*  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. */
  --colorWhite: #ffffff;
  --colorBlack: #282828;
  --colorHoverBlack: #383838;
  /*  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: #1d1b3e;

  /*  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: #00eaf0;

  /* Error color */
  --colorError: #ff0000;

  /*  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: "Whitney SSm", "-apple-system", "BlinkMacSystemFont", "Segoe UI",
    "Helvetica", "Arial", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;

  --colorAppBackground: #000;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--colorPrimary600) !important;
  font-weight: 500 !important;
}

a,
a:hover,
a:visited,
a:active {
  color: var(--colorWhite) !important;
}

input {
  color: var(--colorWhite);
}

input::placeholder {
  color: var(--colorWhite);
}

label{
	color: #fff !important;
}


[role="tabpanel"][id="overview"] {
  background-color: var(--colorBlack);
  padding: 16px;
  border-radius: 10px;
}

[role="tabpanel"][id="overview"] > div {
  color: var(--colorWhite);
}

/* 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 {
  color: var(--colorWhite);
}

/* Application autofill input's description. */
.ashby-application-form-autofill-input-description {
  color: var(--colorWhite);
}

/* 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 {
  color: var(--colorWhite);
}

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

/* Application autofill input's magic sparkles icon. */
.ashby-application-form-autofill-input-icon {
  color: var(--colorWhite);
}

/* 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 {
  background-color: var(--colorBlack);
  padding: 16px;
  border-radius: 10px;
}

/* Application autofill input's title. */
.ashby-application-form-autofill-input-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 24px;
  color: var(--colorWhite);
}

/* Container element for application autofill input form. */
.ashby-application-form-autofill-pane {
  background-color: var(--colorBlack);
  padding: 16px;
  border-radius: 10px;
}

/* The resume uploader to auto-fill the application form */
.ashby-application-form-autofill-uploader {
  background-color: var(--colorBlack);
  padding: 16px;
  border-radius: 10px;
}

/* A container for displaying the custom message to the user */
.ashby-application-form-blocked-application-container {
  color: var(--colorWhite);
}

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

/* A container for the failure message */
.ashby-application-form-failure-container {
  color: var(--colorError);
}

/* 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 {
  color: var(--colorWhite);
}

/* The title of each question on an application form. */
.ashby-application-form-question-title {
  color: var(--colorWhite);
}

/* 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 {
  color: var(--colorWhite);
}

/* The description for an application form section. May not exist if no description was specified. */
.ashby-application-form-section-header-description {
  color: var(--colorWhite);
}

/* The title for an application form section. May not exist for the default section. */
.ashby-application-form-section-header-title {
  color: var(--colorWhite);
}

/* The application submission button. Will have loading and hover states that should be tested. */
.ashby-application-form-submit-button {
  color: var(--colorWhite);
}

/* A container for the success message */
.ashby-application-form-success-container {
  color: var(--colorPrimary600);
}

/* The text message consent description. Displayed below phone number fields. Will only show if texting is enabled. */
.ashby-application-form-texting-consent-description {
  color: var(--colorWhite);
}

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

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

/* 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 {
  color: var(--colorWhite);
  border: 2px solid var(--colorWhite);
  border-radius: var(--borderRadiusControl);
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 24px;
  transition: opacity 0.2s ease-in-out;
}

.ashby-job-board-back-to-all-jobs-button:hover {
  opacity: 0.8;
  background-color: var(--colorWhite);
}

/* A select box element for filtering the job board. */
.ashby-job-board-filter {
  color: var(--colorBlack) !important;
  background-color: var(--colorWhite) !important;
  border-radius: var(--borderRadiusControl);
  border: 2px solid var(--colorHoverBlack);
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 24px;
}

/* The 'Filters' label element in the job board. */
.ashby-job-board-filters-label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 24px;
  color: var(--colorWhite);
}

/* The heading of the entire job board. */
.ashby-job-board-heading {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 32px;
  margin-bottom: 16px;
  color: var(--colorWhite);
}

/* The count of job postings on the job board. */
.ashby-job-board-heading-count {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 24px;
  color: var(--colorWhite);
}

/* 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(--colorWhite);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 24px;
  margin-bottom: 16px;
}

/* 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(--colorBlack);
  padding: 16px;
  border-radius: 10px;
}

.ashby-job-posting-brief:hover {
  background-color: var(--colorHoverBlack);
  transform: translateY(-2px);
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 1);
}

/* 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 {
  color: var(--colorWhite) !important;
}

/* The container for the details of the job posting, in the details pane. */
.ashby-job-posting-brief-details {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  position: relative;
  color: var(--colorWhite);
}

/* 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-size: 18px;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 0.36px;
}

.ashby-job-posting-brief-title:hover,
.ashby-job-posting-brief-title:active,
.ashby-job-posting-brief-title:visited {
  color: var(--colorPrimary600) !important;
}

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

/* The heading of a job post */
.ashby-job-posting-heading {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 32px;
  margin-bottom: 16px;
  color: var(--colorWhite);
}

/* The left pane of the job posting, with the job posting details */
.ashby-job-posting-left-pane {
  background-color: var(--colorAppBackground);
  color: var(--colorWhite);
  padding: 16px;
  border-radius: 10px;
}

/* The right pane of the job posting, containing the tabs, overview, and application form */
.ashby-job-posting-right-pane {
  background-color: var(--colorAppBackground);
  padding: 16px;
  border-radius: 10px;
}

/* The application tab in the right pane of the job posting */
.ashby-job-posting-right-pane-application-tab {
  color: var(--colorWhite);
  opacity: 1;
  transition: opacity 0.2s ease;
}

.ashby-job-posting-right-pane-application-tab:hover {
  opacity: 0.8;
}

/* The overview tab in the right pane of the job posting */
.ashby-job-posting-right-pane-overview-tab {
  color: var(--colorWhite);
}

/* 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 {
}

.ashby-job-posting-brief-department-heading,
.ashby-job-posting-brief-department-heading-level {
  color: var(--colorWhite) !important;
}

.ashby-job-posting-right-pane a[href*="/application"] > button {
  background-color: var(--colorPrimary600);
  color: var(--colorWhite);
  border-radius: 10px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  transition: background-color 0.2s ease-in-out;
}

.ashby-job-posting-right-pane a[href*="/application"] > button:hover {
  background-color: var(--colorWhite);
  color: var(--colorBlack);
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

@media only screen and (max-width: 767px) {
  .ashby-job-posting-right-pane nav[role="tablist"] {
    background-color: var(--colorBlack) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6) !important;
    border-top-left-radius: var(--borderRadiusContainer);
    border-top-right-radius: var(--borderRadiusContainer);
  }
}

/* Alle knoppen in het job board */
.ashby-job-posting-right-pane button,
.ashby-application-form-container button {
  margin-right: 10px;
  border: 2px solid var(--colorPrimary600) !important;
  border-radius: var(--borderRadiusButton) !important;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}

/* Hover states */
.ashby-job-posting-right-pane button:hover,
.ashby-application-form-container button:hover {
  background-color: var(--colorPrimary600) !important;
  color: var(--colorWhite) !important;
  cursor: pointer;
}

/* Hover effect for autocomplete options (without using class names) */
[role="listbox"] > div > div:hover {
  background-color: var(--colorPrimary600) !important;
  color: var(--colorWhite) !important;
  cursor: pointer;
}

/* Optional: selected state for keyboard navigation (if applicable) */
[role="listbox"] > div > div[aria-selected="true"] {
  background-color: var(--colorPrimary600) !important;
  color: var(--colorWhite) !important;
}