.thths-wrap {
  max-width: 1000px;
}
.thths-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.thths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.thths-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.thths-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.thths-table {
  width: 100%;
  border-collapse: collapse;
}
.thths-table th,
.thths-table td {
  border-bottom: 1px solid #e5e7eb;
  padding: 8px;
  text-align: left;
}
.thths-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}
.thths-actions {
  margin-top: 12px;
  display: flex;
  gap: 8px;
}
/* Steps list - nicer numbering */
.thths-steps {
  list-style: none;
  margin: 8px 0 0 0;
  padding: 0;
  counter-reset: thths-step;
}
.thths-steps li {
  position: relative;
  margin: 6px 0;
  padding-left: 2.25rem;
}
.thths-steps li::before {
  content: counter(thths-step);
  counter-increment: thths-step;
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.6rem;
  height: 1.6rem;
  line-height: 1.6rem;
  border-radius: 999px;
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: 0.9rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
