/* =====================================================================
   style.css — 改行コード・空白変換 ツール固有の微調整のみ。
   共通スタイルは /_shared/shirugear.css に任せる。
   ===================================================================== */

/* 入出力エリアは等幅で空白を確認しやすく */
.nwc-area {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, "Courier New", monospace;
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre;
  overflow-wrap: normal;
  overflow-x: auto;
  resize: vertical;
}

/* チェックボックス群 */
.nwc-checks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: var(--sg-space-1, 4px);
}
.nwc-check {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.4;
}
.nwc-check input {
  margin-top: 2px;
  flex: 0 0 auto;
}

/* 適用順リスト */
.nwc-order {
  margin: var(--sg-space-2, 8px) 0 0;
  padding-left: 1.4em;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--sg-muted, #555);
}
