/* 印刷指定選択モーダル（共通） */
.jq_printing_spec_modal_overlay{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1000;
	background: rgba(0,0,0,0.4);
	display: flex;
	align-items: center;
	justify-content: center;
}
.jq_printing_spec_modal_container{
	background: white;
	border-radius: 10px;
	box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .3);
	padding: 20px;
	min-width: 280px;
	max-width: 90%;
	max-height: 80vh;
	overflow-y: auto;
}
.jq_printing_spec_modal_header{
	font-weight: bold;
	margin-bottom: 15px;
}
.jq_printing_spec_option_list{
	list-style: none;
	padding: 0;
	margin: 0;
}
.jq_printing_spec_option_btn{
	display: flex;
	align-items: center;
	padding: 12px 15px;
	margin: 6px 0;
	border-radius: 6px;
	cursor: pointer;
	border: 1px solid #e0e0e0;
	transition: background 0.2s, border-color 0.2s;
}
.jq_printing_spec_option_btn:hover{
	background: #f5f5f5;
	border-color: #ccc;
}
.jq_printing_spec_option_selected{
	background: #e8f4fd;
	border-color: #2196F3;
}
/* ウラ面印刷不適合用紙選択時：「あり」オプションをグレーアウト（ウラ面印刷モーダル） */
.jq_printing_spec_option_btn.unselectable-h23,
.jq_back_printing_option_btn.unselectable-h23{
	opacity: 0.4;
	filter: grayscale(100%);
	cursor: not-allowed;
}
.jq_printing_spec_option_btn.unselectable-h23:hover,
.jq_back_printing_option_btn.unselectable-h23:hover{
	background: transparent;
	border-color: #e0e0e0;
}
/* RGB不適合用紙選択時：RGB再現性重視オプションをグレーアウト */
.jq_printing_spec_option_btn.unselectable-rgb{
	opacity: 0.4;
	filter: grayscale(100%);
	cursor: not-allowed;
}
.jq_printing_spec_option_btn.unselectable-rgb:hover{
	background: transparent;
	border-color: #e0e0e0;
}
.jq_printing_spec_option_btn.unselectable-rgb:hover{
	background: #fff;
	border-color: #e0e0e0;
}
.jq_printing_spec_option_btn.unselectable-rgb:hover{
	background: inherit;
	border-color: #e0e0e0;
}
/* マット感優先印刷不適合用紙選択時：黒のマット感優先オプションをグレーアウト（モノクロ本文） */
.jq_printing_spec_option_btn.unselectable-matteng,
.jq_monobody_printing_spec_option_btn.unselectable-matteng{
	opacity: 0.4;
	filter: grayscale(100%);
	cursor: not-allowed;
}
.jq_printing_spec_option_btn.unselectable-matteng:hover,
.jq_monobody_printing_spec_option_btn.unselectable-matteng:hover{
	background: transparent;
	border-color: #e0e0e0;
}
/* モノクロ本文印刷指定モーダル用（印刷指定モーダルと同スタイル、clickハンドラとの衝突回避） */
.jq_monobody_printing_spec_option_btn{
	display: flex;
	align-items: center;
	padding: 12px 15px;
	margin: 6px 0;
	border-radius: 6px;
	cursor: pointer;
	border: 1px solid #e0e0e0;
	transition: background 0.2s, border-color 0.2s;
}
.jq_monobody_printing_spec_option_btn:hover{
	background: #f5f5f5;
	border-color: #ccc;
}
.jq_monobody_printing_spec_option_btn.jq_printing_spec_option_selected{
	background: #e8f4fd;
	border-color: #2196F3;
}
/* 印刷指定選択エリア（クリックでモーダルを開く） */
.css_selected_printing_spec_container{
	display: block;
	min-width: 180px;
	max-width: 100%;
	min-height: 2em;
	padding: 6px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background-color: #fff;
	line-height: 1.4;
	margin-bottom: 0;
	box-sizing: border-box;
}
.css_selected_printing_spec_container:hover{
	background-color: #f9f9f9;
}
.css_selected_printing_spec_container.css_selected_printing_spec_container_clickable{
	cursor: pointer;
}
.css_selected_printing_spec_container .css_selected_printing_spec_name{
	display: block;
}
