/**
 * 部署横断シャッフルチーム編成
 * tt-（team-tools-common.css）プレフィックスをベースに拡張
 */

/* 部署バッジ（カラフル） */
.cd-dept-badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 600;
	margin-left: 6px;
	vertical-align: middle;
}

/* 部署カラーパレット（自動割当） */
.cd-dept-color-0 { background: #DCEDF5; color: #1F5D6B; }
.cd-dept-color-1 { background: #FBE6DC; color: #8B4621; }
.cd-dept-color-2 { background: #E5DCFB; color: #4A2B95; }
.cd-dept-color-3 { background: #DCFBE6; color: #1F7333; }
.cd-dept-color-4 { background: #FBDCE8; color: #8B214E; }
.cd-dept-color-5 { background: #FBF5DC; color: #6B5520; }
.cd-dept-color-6 { background: #DCF5F1; color: #1B5A52; }
.cd-dept-color-7 { background: #F0DCFB; color: #6B2195; }
.cd-dept-color-8 { background: #E8F0FA; color: #2B4A6B; }
.cd-dept-color-9 { background: #FAF0E8; color: #8B5520; }

/* 部署分布バー */
.cd-dept-distribution {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px dashed #E8ECF7;
}

.cd-dept-dist-bar {
	display: flex;
	height: 18px;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 6px;
}

.cd-dept-dist-segment {
	font-size: 10px;
	color: #FFFFFF;
	font-weight: 700;
	text-align: center;
	line-height: 18px;
	white-space: nowrap;
	overflow: hidden;
}

/* セグメントの色（インライン背景色で指定するため、ここではmin-width確保のみ） */
.cd-dept-dist-segment { min-width: 18px; }

.cd-dept-dist-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	font-size: 11px;
}

.cd-dept-dist-legend-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.cd-dept-dist-legend-swatch {
	width: 10px;
	height: 10px;
	border-radius: 2px;
}

/* 制約条件表示 */
.cd-constraint-result {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	margin-left: 8px;
}

.cd-constraint-result--ok { background: #DFF5E5; color: #2C8A4F; }
.cd-constraint-result--partial { background: #FFF8EC; color: #B58608; }
.cd-constraint-result--ng { background: #FCEFEC; color: #C0392B; }

/* 大人数対応のメンバー入力 */
.cd-bulk-textarea {
	min-height: 220px !important;
	font-size: 13.5px;
	line-height: 1.7;
	font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', monospace;
}

/* 制約条件設定行 */
.cd-rule-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 8px;
	align-items: center;
}

@media (max-width: 600px) {
	.cd-rule-row {
		grid-template-columns: 1fr;
	}
}

.cd-rule-row select,
.cd-rule-row input {
	padding: 8px 10px;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	font-size: 13px;
	background: #FFFFFF;
}

/* 部署内訳サマリー */
.cd-dept-summary {
	background: #F4F8FF;
	border: 1px solid #D9E1F5;
	border-radius: 10px;
	padding: 12px 16px;
	margin: 12px 0;
}

.cd-dept-summary-title {
	font-size: 13px;
	font-weight: 700;
	color: #3D5AC8;
	margin-bottom: 8px;
}

.cd-dept-summary-list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
