.precheck-page {
  display: grid;
  gap: 14px;
}

.precheck-page-header,
.precheck-card-title {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.precheck-page-header h3 {
  margin: 0;
  color: var(--text-color, #0f172a);
  font-size: 24px;
  font-weight: 950;
}

.precheck-page-header p,
.precheck-card-title span {
  margin: 4px 0 0;
  color: var(--muted-color, #64748b);
  font-size: 13px;
  font-weight: 700;
}

.precheck-card {
  border: 1px solid var(--border-color, #e6edf7);
  border-radius: 8px;
  background: var(--card-bg, #fff);
  padding: 14px;
}

.precheck-card-title strong {
  display: block;
  color: var(--text-color, #0f172a);
  font-size: 16px;
  font-weight: 950;
}

.precheck-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.precheck-filter-row .form-control,
.precheck-filter-row .form-select {
  width: auto;
  min-width: 170px;
}

.precheck-state {
  margin: 12px 0;
}

@media (max-width: 860px) {
  .precheck-page-header,
  .precheck-card-title {
    display: grid;
  }

  .precheck-filter-row {
    justify-content: stretch;
  }

  .precheck-filter-row .form-control,
  .precheck-filter-row .form-select {
    width: 100%;
  }
}
