/* stylelint-disable */

/* 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: darkorange;

    /*  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: orange;

    /*  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: transparent;
  }

/* Main heading */
.ashby-job-board-heading {
    color: #2c3e50 !important;
    background: transparent !important;
    font-size: 28px !important;
    font-weight: 400 !important;
    margin-bottom: 30px !important;
}

.ashby-job-board-heading-count {
    color: #2c3e50 !important;
    background: transparent !important;
}

/* Filters section */
.ashby-job-board-filters-label {
    color: #2c3e50 !important;
    background: transparent !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    margin-bottom: 10px !important;
}

.ashby-job-board-filter {
    color: #2c3e50 !important;
    background: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.ashby-job-board-filter:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}

/* Department headings */
.ashby-department-heading {
    color: #2c3e50 !important;
    background: transparent !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    margin: 30px 0 15px 0 !important;
}

.ashby-department-heading-level {
    color: #2c3e50 !important;
    background: transparent !important;
}

/* Job posting cards */
.ashby-job-posting-brief {
    background: #ffffff !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 20px !important;
    margin-bottom: 15px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.2s ease !important;
}

.ashby-job-posting-brief:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-2px);
}

.ashby-job-posting-brief-title {
    color: #2c3e50 !important;
    background: transparent !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    margin-bottom: 8px !important;
}

.ashby-job-posting-brief-details {
    color: #6c757d !important;
    background: transparent !important;
    font-size: 14px !important;
}

.ashby-job-posting-brief-department-heading {
    color: #2c3e50 !important;
    background: transparent !important;
}

.ashby-job-posting-brief-department-heading-level {
    color: #6c757d !important;
    background: transparent !important;
}

/* Reset filters */
.ashby-job-board-reset-filters-label {
    color: #6c757d !important;
    background: transparent !important;
    font-size: 14px !important;
    text-decoration: underline;
    cursor: pointer;
}

.ashby-job-board-reset-filters-label:hover {
    color: #495057 !important;
}

/* Back button */
.ashby-job-board-back-to-all-jobs-button {
    color: #2c3e50 !important;
    background: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 10px 20px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.ashby-job-board-back-to-all-jobs-button:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
}

/* Job posting page */
.ashby-job-posting-heading {
    color: #2c3e50 !important;
    background: transparent !important;
    font-size: 32px !important;
    font-weight: 500 !important;
}

.ashby-job-posting-header {
    background: transparent !important;
}

/* Application form */
.ashby-application-form-container {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 30px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.ashby-application-form-section-container {
    background: transparent !important;
    border: none !important;
    margin-bottom: 20px !important;
}

.ashby-application-form-section-header-title {
    color: #2c3e50 !important;
    background: transparent !important;
    font-size: 20px !important;
    font-weight: 500 !important;
}

.ashby-application-form-section-header-description {
    color: #6c757d !important;
    background: transparent !important;
    font-size: 14px !important;
}

.ashby-application-form-question-title {
    color: #2c3e50 !important;
    background: transparent !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.ashby-application-form-question-description {
    color: #6c757d !important;
    background: transparent !important;
    font-size: 13px !important;
}

.ashby-application-form-field-entry input,
.ashby-application-form-field-entry textarea,
.ashby-application-form-field-entry select {
    color: #2c3e50 !important;
    background: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 6px !important;
    padding: 10px 12px !important;
    font-size: 14px !important;
}

.ashby-application-form-field-entry input:focus,
.ashby-application-form-field-entry textarea:focus,
.ashby-application-form-field-entry select:focus {
    border-color: #6c757d !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.1) !important;
}

.ashby-application-form-submit-button {
    color: #ffffff !important;
    background: #2c3e50 !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.2s ease !important;
}

.ashby-application-form-submit-button:hover {
    background: #1a252f !important;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-1px);
}

.ashby-application-form-autofill-input-root {
    background: #f8f9fa !important;
    border: 2px dashed #dee2e6 !important;
    border-radius: 8px !important;
}

.ashby-application-form-autofill-input-title {
    color: #2c3e50 !important;
}

.ashby-application-form-autofill-input-description {
    color: #6c757d !important;
}

.ashby-application-form-texting-consent-description {
    color: #6c757d !important;
    background: transparent !important;
    font-size: 13px !important;
}