body {
  background-color: #f8f9fa;
}

.mockup-header {
  border-bottom: 3px solid #0d6efd;
  padding-bottom: 1rem;
}

.wizard-steps {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  overflow: hidden;
}

.wizard-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  position: relative;
  color: #6c757d;
  background: #fff;
}

.wizard-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #dee2e6;
}

.wizard-step.active {
  background: #e7f1ff;
  color: #0d6efd;
}

.wizard-step.completed {
  background: #d1e7dd;
  color: #198754;
}

.wizard-step-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  background: #e9ecef;
  flex-shrink: 0;
}

.wizard-step.active .wizard-step-num {
  background: #0d6efd;
  color: #fff;
}

.wizard-step.completed .wizard-step-num {
  background: #198754;
  color: #fff;
}

.wizard-step-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.document-panel {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1.25rem;
}

.upload-zone {
  background: #fff;
  border: 2px dashed #ced4da;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  transition: border-color 0.15s ease;
}

.upload-zone:hover {
  border-color: #0d6efd;
}

.council-option {
  font-weight: 500;
}

.primary-request-block .card-header {
  border-bottom: 1px solid #e9ecef;
}

.primary-request-block + .primary-request-block {
  margin-top: 0;
}

#add-primary-request {
  font-weight: 600;
}

.section-title {
  border-left: 4px solid #0d6efd;
  padding-left: 0.75rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.summary-row:last-child {
  border-bottom: none;
}

.confirm-icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: #d1e7dd;
  color: #198754;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.auth-card {
  border: none;
}

.auth-icon {
  font-size: 3rem;
  color: #0d6efd;
  line-height: 1;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #dadce0;
  color: #3c4043;
  font-weight: 500;
  padding: 0.65rem 1rem;
}

.btn-google:hover {
  background: #f8f9fa;
  border-color: #dadce0;
  color: #202124;
  box-shadow: 0 1px 3px rgba(60, 64, 67, 0.15);
}

.google-logo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.destination-card {
  cursor: pointer;
}

.destination-image-wrap {
  position: relative;
  border: 2px solid #dee2e6;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.destination-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.destination-check {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: #198754;
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.destination-card.selected .destination-image-wrap {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

.destination-card.selected .destination-check {
  display: inline-flex;
}

.destination-label {
  color: #495057;
}

.destination-details .font-monospace {
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .wizard-step-label {
    display: none;
  }

  .wizard-step {
    justify-content: center;
    padding: 0.75rem;
  }
}

#primary-council-group.is-invalid .council-option,
#health-council-group.is-invalid .council-option {
  border-color: var(--bs-danger);
}

#destination-grid.is-invalid {
  outline: 2px solid var(--bs-danger);
  outline-offset: 4px;
  border-radius: 0.375rem;
}

.upload-zone .invalid-feedback {
  display: block;
}
