  :root {
    --colorPrimary900: #101075; /* Darker primary (buttons, active links) */
    --colorPrimary600: #101075; /* Lighter primary (hover, accents) */

		--fontFamily: "Saanssemimono Trial", Arial, sans-serif;
    --borderRadiusButton: 8px;
    --borderRadiusControl: 8px;
    --borderRadiusContainer: 8px;

    --colorAppBackground: transparent;
    --widthMaxJobBoard: 100%;
  }

  /* Optional: match button styling */
  .ashby-application-form-submit-button {
    background-color: var(--colorPrimary900);
    color: white;
    font-family: var(--fontFamily);
    border-radius: var(--borderRadiusButton);
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .ashby-application-form-submit-button:hover {
    background-color: var(--colorPrimary600);
  }

  /* Optional: job title text style */
  .ashby-job-posting-brief-title {
    font-family: var(--fontFamily);
    font-weight: 600;
    color: var(--colorPrimary900);
  }

  /* Optional: change job board heading */
  .ashby-job-board-heading {
    font-family: var(--fontFamily);
    color: var(--colorPrimary900);
    font-size: 2rem;
    margin-bottom: 1rem;
  }