/* stylelint-disable */

/* These variables can be used to control values throughout the job board. */
:root {
    /*  Darker primary color */
    --colorPrimary900: var(--accent-dark);

    /*  Lighter primary color */
    --colorPrimary600: var(--accent);

    /*  The max width of the job board container */
    --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: 'ABCDiatype', sans-serif;

    --colorAppBackground: var(--background);
}

input {
    cursor: auto !important;
}

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

/* A container for the failure message */
.ashby-application-form-failure-container {
    color: red;
}

/* A container for the label and input on an application form. */
.ashby-application-form-field-entry {
    margin-bottom: 10px;
}

/* The description of each question on an application form. Will only show if a description is specified. */
.ashby-application-form-question-description {
    font-family: 'Sus', monospace;
    letter-spacing: 1px;
}

/* The title of each question on an application form. */
.ashby-application-form-question-title {
    font-family: Reckless, serif;
    font-weight: 500;
}

/* 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 {
    margin-bottom: 20px;
}

/* The header for an application form section, possibly containing a title and description. */
.ashby-application-form-section-header {
    margin-bottom: 10px;
}

/* The description for an application form section. May not exist if no description was specified. */
.ashby-application-form-section-header-description {
    font-family: 'Sus', monospace;
    letter-spacing: 1px;
}

/* The title for an application form section. May not exist for the default section. */
.ashby-application-form-section-header-title {
    font-family: Reckless, serif;
    font-weight: 500;
}

/* The application submission button. Will have loading and hover states that should be tested. */
.ashby-application-form-submit-button {
    font-family: 'Sus', monospace;
    padding: 0.75rem 2rem;
    transition: all 0.1s ease-in-out;
}

.ashby-application-form-submit-button:hover {
    background-color: black;
    color: white;
}

/* A container for the success message */
.ashby-application-form-success-container {
    color: green;
}

/* The heading of a department, which can have many teams under it. */
.ashby-department-heading {
    font-family: Reckless, serif;
    font-weight: 500;
}

/* The heading of a single team. */
.ashby-department-heading-level {
    font-family: 'Sus', monospace;
    letter-spacing: 1px;
}

/* A select box element for filtering the job board. */
.ashby-job-board-filter {
    font-family: 'Sus', monospace;
}

/* The heading of the entire job board. */
.ashby-job-board-heading {
    font-family: Reckless, serif;
    font-weight: 500;
}

/* The count of job postings on the job board. */
.ashby-job-board-heading-count {
    font-family: 'Sus', monospace;
    letter-spacing: 1px;
}

/* 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(--background-dark);
    color: var(--text);
}

/* The heading of a department name. Departments group teams. */
.ashby-job-posting-brief-department-heading {
    font-family: Reckless, serif;
    font-weight: 500;
}

/* The heading of a single team. */
.ashby-job-posting-brief-department-heading-level {
    font-family: 'Sus', monospace;
    letter-spacing: 1px;
}

/* The container for the details of the job posting, in the details pane. */
.ashby-job-posting-brief-details {
    font-family: 'ABCDiatype';
}

/* The container for the list of job post briefings. */
.ashby-job-posting-brief-list {
    font-family: 'ABCDiatype';
}

/* The title of the job posting in the details pane. */
.ashby-job-posting-brief-title {
    font-family: Reckless, serif;
    font-weight: 500;
}

/* The heading of a job post */
.ashby-job-posting-heading {
    font-family: Reckless, serif;
    font-weight: 500;
}

/* A container for any surveys specified for this application form. */
.ashby-survey-form-container {
    font-family: 'ABCDiatype';
}

