/* ============================================================
   masterBoard.css — マスタ管理タブ(チーム・Status・属性項目・分類/小分類/区分/
   ヒアリング先・重要度/実行難易度/緊急度・削減時間プリセット等の「選択肢の定義」を
   一箇所で追加/改名/削除する画面)
   ============================================================ */
/* 「一覧+改名input+削除ボタン+新規追加」という統一UIをそのままcss/base.cssの
   .childList/.childItem/.addTaskLineで組んでいるため、専用CSSはごく僅か。 */
/* 左にマスタの一覧(ツリー的なナビ)、右に選択中のマスタの詳細(編集UI)を表示する2ペイン構成。
   一度に1つのマスタだけを表示するので、以前のセクション別開閉(collapsedMasterSections)は不要になった。 */
.masterLayout{display:flex;gap:0;align-items:flex-start;min-height:400px;}
.masterNav{
  width:190px;flex:none;border-right:1px solid var(--line);padding-right:4px;
  display:flex;flex-direction:column;gap:2px;
}
.masterNavItem{
  padding:8px 10px;border-radius:6px;cursor:pointer;font-size:12.5px;color:var(--ink);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.masterNavItem:hover{background:#FAF8F2;}
.masterNavItem.active{background:var(--board);color:#fff;font-weight:700;}
.masterDetail{flex:1;min-width:0;padding:4px 0 4px 20px;}
.masterDetail h3{margin:0 0 10px;font-size:14px;}
table.masterTeamTable{width:100%;border-collapse:collapse;font-size:12px;}
table.masterTeamTable th{
  background:#FBFAF6;color:var(--muted);font-size:10.5px;text-align:left;
  padding:4px 6px;border-bottom:1px solid var(--line);white-space:nowrap;
}
table.masterTeamTable td{padding:4px 6px;border-bottom:1px solid var(--line);vertical-align:middle;}
table.masterTeamTable tr:hover td{background:#FAF8F2;}
table.masterTeamTable input[type=text]{width:100%;}
.masterColorDot{display:inline-block;width:14px;height:14px;border-radius:50%;vertical-align:middle;}
.masterSectionNote{font-size:10.5px;color:var(--muted);margin:2px 0 8px;}
