/* Updated Careers Page CSS inspired by Dave.com */

:root {
  --colorPrimary900: #004D26;
  --colorPrimary600: #00B15C;
  --colorAppBackground: #FAFAFA;
  --widthMaxJobBoard: 800px;
  --borderRadiusContainer: 10px;
  --borderRadiusControl: 10px;
  --borderRadiusButton: 8px;
  --fontFamily: "DM Sans", "-apple-system", "BlinkMacSystemFont", "Segoe UI", "Helvetica", "Arial", sans-serif;
}

body {
  background-color: var(--colorAppBackground);
  font-family: var(--fontFamily);
  color: #1a1a1a;
}

/* Job Board */
.ashby-job-board-heading {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.5px;
  text-align: left;
  color: var(--colorPrimary900);
  margin-bottom: 24px;
}

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

.ashby-job-board-filter {
  color: var(--colorPrimary900);
  border-radius: var(--borderRadiusControl);
}

/* Job Postings */
.ashby-job-posting-brief,
.ashby-job-posting-brief-list {
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 16px;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}

.ashby-job-posting-brief:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.ashby-job-posting-brief-department-heading {
  color: var(--colorPrimary900);
  font-weight: 600;
}

.ashby-job-posting-heading {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.5px;
  text-align: left;
  color: var(--colorPrimary900);
  margin-bottom: 12px;
}

.ashby-job-posting-brief-title {
  margin-bottom: 10px;
}

/* Application Form */
.ashby-application-form-container {
  background-color: white;
  border-radius: var(--borderRadiusContainer);
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.ashby-application-form-field-entry {
  margin-bottom: 16px;
}

.ashby-application-form-submit-button {
  background-color: var(--colorPrimary600);
  color: white;
  font-weight: 600;
  border-radius: var(--borderRadiusButton);
  padding: 12px 24px;
  border: none;
  transition: background-color 0.2s ease;
}

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

/* Sections */
.ashby-application-form-section-header-title,
.ashby-department-heading-level {
  color: var(--colorPrimary900);
  font-weight: 600;
}

/* Note: Removed unsupported selectors like .page-header for Ashby compatibility */