.assistant-panel textarea {
  width: 100%;
  min-height: 116px;
  resize: vertical;
  color: var(--ink);
  background: #f5faf7;
  border: 1px solid #b5cfc3;
  border-radius: 8px;
  padding: 12px;
  line-height: 1.35;
}

.draft-form {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.draft-form .button-row {
  align-items: stretch;
}

.draft-form button {
  flex: 1;
}

.sketch-box {
  margin: 0 14px 12px;
  padding: 12px;
  background: #fffdf8;
  border: 1px solid #edd6a9;
  border-radius: 8px;
}

.sketch-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.sketch-box svg {
  width: 100%;
  height: auto;
}

.sketch-box rect {
  fill: #ffffff;
  stroke: var(--brand);
  stroke-width: 2;
}

.sketch-box rect:nth-of-type(2) {
  stroke: var(--blue);
}

.sketch-box rect:nth-of-type(3) {
  stroke: var(--amber);
}

.sketch-box rect:nth-of-type(4) {
  stroke: var(--purple);
}

.sketch-box path {
  fill: none;
  stroke: #5f766e;
  stroke-width: 2;
}

.sketch-box text {
  fill: var(--ink);
  font-size: 14px;
  font-weight: 760;
  text-anchor: middle;
}

.assistant-result {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 8px;
  margin: 0 14px 14px;
  padding: 12px;
  color: var(--muted);
  background: #f8faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.35;
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-top: 3px;
  background: var(--brand);
  border-radius: 50%;
}
