.tc-body {
  margin: 0;
  overflow: hidden;
  background: var(--md-bg);
  color: var(--md-text);
  font-family: var(--md-font-sans);
}
.tc-app {
  max-width: 36rem;
  margin: 0 auto;
  padding: 1.25rem 1rem 2rem;
}
.tc-title {
  font-family: var(--md-font-display);
  font-size: 1.6rem;
  margin: 0 0 0.5rem;
}
.tc-lead, .tc-summary, .tc-status, .tc-thanks {
  color: var(--md-muted);
  line-height: 1.45;
}
.tc-cta {
  color: var(--md-text);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
  margin: 0 0 1rem;
}
.tc-form label {
  display: block;
  margin-bottom: 0.9rem;
}
.tc-form label span {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: var(--md-text);
}
.tc-form input, .tc-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--md-border);
  border-radius: var(--md-radius);
  font: inherit;
  background: var(--md-surface);
}
.tc-btn {
  appearance: none;
  border: 0;
  background: var(--md-accent);
  color: var(--md-accent-contrast);
  padding: 0.65rem 1.1rem;
  border-radius: var(--md-radius);
  font: inherit;
  cursor: pointer;
}
.tc-btn:disabled {
  opacity: 0.6;
  cursor: wait;
}
.tc-result {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--md-border);
}
.tc-verdict {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.tc-light {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.tc-light.green { background: var(--md-light-green); }
.tc-light.yellow { background: var(--md-light-yellow); }
.tc-light.red { background: var(--md-light-red); }
.tc-label {
  margin: 0;
  color: var(--md-text);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}
.tc-summary {
  color: var(--md-text);
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
  white-space: pre-wrap;
  line-height: 1.45;
}
.tc-status[data-kind="error"] { color: var(--md-light-red); }
.tc-thanks { color: var(--md-accent); font-weight: 600; }
