/* =====================================================================
   style.css — QRコード生成 ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる。
   ===================================================================== */

/* テキストエリア: 高さ可変・読みやすい行間 */
.sg-textarea {
  min-height: 100px;
  resize: vertical;
  line-height: 1.6;
}

/* QR表示エリア：中央寄せ・白背景でスキャンしやすく */
.sg-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: var(--sg-space-4);
  background: #ffffff;
  border: 1px solid var(--sg-border);
  border-radius: var(--sg-radius);
}

/* 生成されたSVGをコンテナ幅に収める */
.sg-qr svg {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
}

.sg-qr__placeholder {
  margin: 0;
  color: var(--sg-muted);
  font-size: 0.9rem;
  text-align: center;
}
