:root {
  color-scheme: light;
}

body {
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
}

.nav-link {
  border-radius: 0.375rem;
  padding: 0.5rem 0.625rem;
}

.nav-link:hover {
  background: rgb(244 244 245);
  color: rgb(24 24 27);
}

.form-input,
.form-textarea {
  width: 100%;
  border-radius: 0.375rem;
  border: 1px solid rgb(212 212 216);
  background: white;
  padding: 0.625rem 0.75rem;
  color: rgb(24 24 27);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: rgb(15 118 110);
  box-shadow: 0 0 0 3px rgb(204 251 241);
}

.form-checkbox {
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 0.25rem;
  border: 1px solid rgb(212 212 216);
  accent-color: rgb(15 118 110);
}

.form-counter {
  text-align: right;
  font-size: 0.875rem;
  color: rgb(82 82 91);
}

.primary-button,
.secondary-button,
.danger-button {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.primary-button {
  background: rgb(15 118 110);
  color: white;
}

.primary-button:hover {
  background: rgb(17 94 89);
}

.secondary-button {
  border: 1px solid rgb(212 212 216);
  color: rgb(39 39 42);
}

.secondary-button:hover {
  background: rgb(244 244 245);
}

.danger-button {
  border: 1px solid rgb(254 202 202);
  background: rgb(254 242 242);
  color: rgb(185 28 28);
}

.danger-button:hover {
  background: rgb(254 226 226);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 0.375rem;
  border: 1px solid transparent;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.status-pill-draft {
  border-color: rgb(212 212 216);
  background: rgb(250 250 250);
  color: rgb(82 82 91);
}

.status-pill-submitted {
  border-color: rgb(203 213 225);
  background: rgb(248 250 252);
  color: rgb(51 65 85);
}

.status-pill-under-review {
  border-color: rgb(186 230 253);
  background: rgb(240 249 255);
  color: rgb(3 105 161);
}

.status-pill-needs-clarification {
  border-color: rgb(253 230 138);
  background: rgb(255 251 235);
  color: rgb(180 83 9);
}

.status-pill-approved {
  border-color: rgb(167 243 208);
  background: rgb(236 253 245);
  color: rgb(6 95 70);
}

.status-pill-rejected {
  border-color: rgb(254 202 202);
  background: rgb(254 242 242);
  color: rgb(185 28 28);
}

.detail-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgb(63 63 70);
}

.detail-text {
  margin-top: 0.5rem;
  white-space: pre-line;
  line-height: 1.625;
  color: rgb(63 63 70);
}
