
.techniquehow-snap-wrap {
  max-width: 720px;
  margin: 18px auto;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.techniquehow-brand {
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 12px;
  text-align: left;
}

.techniquehow-input {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.techniquehow-input input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.th-btn {
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(90deg, #ff7a18, #af0cff);
  color: white;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(175, 12, 255, 0.18);
}

.th-loading {
  margin-top: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 4px solid rgba(0, 0, 0, 0.06);
  border-top-color: rgba(15, 23, 42, 0.9);
  animation: thspin 1s linear infinite;
}

@keyframes thspin {
  to {
    transform: rotate(360deg);
  }
}

.th-results {
  margin-top: 14px;
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  text-align: left;
}

.th-row {
  display: block;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.04);
}

.th-label {
  display: inline-block;
  font-weight: 600;
  color: #0f172a;
  font-size: 14px;
  margin-right: 6px;
}

.th-value {
  display: inline-block;
  color: #334155;
  font-size: 14px;
  text-align: left;
  word-break: break-word;
}

@media (max-width: 768px) {
  .techniquehow-input {
    flex-direction: column;
    align-items: stretch;
  }

  .techniquehow-input input,
  .th-btn {
    width: 100%;
    font-size: 14px;
  }
}
