@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ─── Variables ─────────────────────────────────────────── */

:root {
  --fontFamily: 'DM Sans', sans-serif;
  --borderRadiusButton: 12px;
}

/* ─── Base ──────────────────────────────────────────────── */

body {
  background-color: #FFFFFF;
}

@media (min-width: 1024px) {
  #root {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* ─── Job Cards ─────────────────────────────────────────── */

.ashby-job-posting-brief {
  background-color: #FBFAFA;
  margin-bottom: 10px;
  transition: background-color 0.15s ease;
}

.ashby-job-posting-brief:hover {
  background-color: #C0FFB8;
}

/* ─── Apply Button ──────────────────────────────────────── */

.ashby-application-form-submit-button {
  background-color: #171717;
  color: #FFFFFF;
  border-radius: 12px;
  border: none;
  outline: none;
  box-shadow: none;
  transition: background-color 0.15s ease;
}

.ashby-application-form-submit-button:hover {
  background-color: #171717;
  color: #FFFFFF;
  border: none;
  outline: none;
  box-shadow: none;
}

.ashby-application-form-submit-button:focus {
  outline: none;
  box-shadow: none;
}