/* These styles are generated from project.scss. */

.alert-debug {
  color: black;
  background-color: white;
  border-color: #d6e9c6;
}

.alert-error {
  color: #b94a48;
  background-color: #f2dede;
  border-color: #eed3d7;
}

/* Service-type chooser cards on the photo upload page. Bootstrap has no
   parent-state utility for "a card whose radio is checked", so the checked
   highlight is a small custom rule keyed off :has(). */
.service-option {
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.service-option:has(input:checked) {
  border-color: var(--bs-primary) !important;
  background-color: rgba(var(--bs-primary-rgb), 0.04);
}
