/* 카탈로그 버튼 스타일 */
.btn_catalog_single, .btn_catalog_multi {
	background: #f0f8ff;
	border: 1px solid #4a90e2;
	color: #4a90e2;
	padding: 2px 6px;
	font-size: 10px;
	border-radius: 3px;
	margin-top: 2px;
	cursor: pointer;
	display: inline-block;
}

.btn_catalog_single:hover, .btn_catalog_multi:hover {
	background: #4a90e2;
	color: white;
}

.btn_catalog_multi {
	background: #fff3cd;
	border-color: #ffc107;
	color: #856404;
}

.btn_catalog_multi:hover {
	background: #ffc107;
	color: white;
}

/* 카탈로그 선택 팝업 스타일 */
.catalog-select-popup {
	padding: 10px;
}

.catalog-select-popup h3 {
	margin: 0 0 10px 0;
	color: #333;
}

.catalog-select-popup p {
	margin: 0 0 15px 0;
	font-size: 12px;
	color: #666;
}

.catalog-list {
	max-height: 200px;
	overflow-y: auto;
}

.catalog-item {
	padding: 10px;
	border: 1px solid #ddd;
	margin-bottom: 5px;
	cursor: pointer;
	border-radius: 4px;
	transition: background-color 0.2s;
}

.catalog-item:hover {
	background: #f8f9fa;
	border-color: #4a90e2;
}

.catalog-name {
	font-weight: bold;
	color: #333;
	margin-bottom: 3px;
}

.catalog-page {
	font-size: 11px;
	color: #666;
}

/* 카탈로그 모달 스타일 */
.catalog-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
}

.catalog-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.catalog-modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	max-width: 500px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
}

.catalog-modal-header {
	padding: 15px 20px;
	border-bottom: 1px solid #ddd;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.catalog-modal-header h3 {
	margin: 0;
	color: #333;
}

.catalog-modal-close {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #999;
}

.catalog-modal-close:hover {
	color: #333;
}

.catalog-modal-body {
	padding: 20px;
	max-height: 300px;
	overflow-y: auto;
}