@charset "utf-8";

.area-select-layer {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 800px;
	height: 80%;
	max-height: 600px;
	background-color: #fff;
	z-index: 1000;
	display: none;
	overflow-y: auto;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 오버레이 추가 */
.area-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
	display: none;
}

.layer-header {
	position: relative;
	height: 50px;
	background-color: #fff;
	border-bottom: 1px solid #e5e5e5;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.layer-header h3 {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin: 0;
}

.close-btn {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	font-size: 24px;
	color: #888;
	cursor: pointer;
	padding: 0;
	width: 30px;
	height: 30px;
	line-height: 30px;
}

.layer-content {
	padding: 15px;
}

.area-select-container {
	margin-bottom: 20px;
}

.area-select-box {
	margin-bottom: 15px;
	background-color: #f8f8f8;
	padding: 15px;
	border-radius: 6px;
	border: 1px solid #e0e0e0;
}

.area-select-box h4 {
	font-size: 15px;
	margin: 0 0 8px 0;
	color: #333;
	font-weight: 600;
	position: relative;
	padding-left: 12px;
}

.area-select-box h4:before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 4px;
	height: 14px;
	background-color: #ff6001;
	border-radius: 2px;
}

.area-select {
	width: 100%;
	height: 45px;
	padding: 0 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 15px;
	color: #333;
	background-color: #fff;
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.area-select:focus {
	border-color: #ff6001;
	outline: none;
	box-shadow: 0 0 0 2px rgba(255, 96, 1, 0.1);
}

.selected-area-list {
	margin-bottom: 10px;
}

.selected-area-list h4 {
	font-size: 15px;
	margin: 0 0 0 0;
	color: #333;
	font-weight: 600;
}

#selectedAreaDisplay {
	min-height: 150px;
	max-height: 150px;
	overflow-y: auto;
	padding: 5px;
	border: 1px solid #ddd;
	border-radius: 4px;
	background-color: #f9f9f9;
}

.selected-area-tag {
	display: inline-block;
	padding: 8px 12px;
	margin: 4px;
	background-color: #f0f8ff;
	border: 1px solid #d0e6ff;
	border-radius: 20px;
	font-size: 14px;
	color: #0078d7;
}

.selected-area-tag .remove-btn {
	display: inline-block;
	margin-left: 6px;
	width: 18px;
	height: 18px;
	line-height: 16px;
	text-align: center;
	border-radius: 50%;
	background-color: #0078d7;
	color: #fff;
	font-size: 12px;
	cursor: pointer;
}

.button-group {
	display: flex;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	border-top: 1px solid #e5e5e5;
	padding: 12px 15px;
	box-sizing: border-box;
}

.button-group button {
	height: 50px;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.2s;
}

.reset-btn {
	flex: 3;
	background-color: #f5f5f5;
	border: 1px solid #ddd;
	color: #666;
	margin-right: 8px;
}

/* .add-btn,
.confirm-btn {
	padding: 8px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
} */

.add-btn {
	flex: 3;
	background-color: #e9f4ff;
	border: 1px solid #c5e0ff;
	color: #0078d7;
	margin-right: 8px;
}

.confirm-btn {
	flex: 4;
	background-color: #ff6001;
	border: 1px solid #ff6001;
	color: white;
}

.reset-btn:hover {
	background-color: #eaeaea;
}

.add-btn:hover {
	background-color: #d5e9ff;
}

.confirm-btn:hover {
	background-color: #e55a01;
}

/* 빈 상태 */
.empty-state {
	color: #999;
	text-align: center;
	padding: 20px 0;
}

/* 메인 페이지 지역 선택 버튼 */
.condition-link__area1 {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 15px;
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-bottom: 15px;
}

.condition-link__area-content {
	flex: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.condition-link__area-link {
	color: #666;
	font-size: 15px;
}

.condition-link__area-action2 {
	position: absolute;
	top: 20px;
	right: 0;
	display: inline-block;
	padding: 6px 12px;
	background-color: #f5f5f5;
	border: 1px solid #ddd;
	border-radius: 4px;
	color: #333;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	margin-left: 10px;
}

/* 하단 여백 */
.layer-content {
	padding-bottom: 80px;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 999;
}

.selected-area-tag {
	display: inline-block;
	margin: 5px;
	padding: 5px 10px;
	background-color: #3396fe;
	border-radius: 15px;
	color: white;
}

.remove-area {
	margin-left: 5px;
	cursor: pointer;
	color: #fff;
}

/* 선택된 지역 버튼 스타일 */
.area-button {
	display: inline-block;
	margin: 2px 2px;
	padding: 4px 10px;
	max-width: 100px;
	max-height: 38px;
	line-height: 25px;
	background-color: #3396fe;
	color: white;
	border-radius: 15px;
	font-size: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	cursor: default;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.area-button-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	max-width: 100%;
	/* padding: 14px 0; */
	padding: 0;
}

/* 초기화 버튼 스타일 */
.reset-btn {
	padding: 8px 20px;
	border: none;
	border-radius: 4px;
	background-color: #e3e7eb;
	color: #000;
	cursor: pointer;
}

.reset-btn:hover {
	background-color: #d1d8de;
}

/* 선택 개수 스타일 */
#selectedCount {
	font-size: 14px;
	color: #666;
	font-weight: normal;
}

/* 선택 개수가 최대일 때 스타일 */
.max-selected #selectedCount {
	color: #e74c3c;
}

/* 버튼 그룹 스타일 조정 */
.button-group {
	display: flex;
	justify-content: center;
	gap: 10px;
}

/* 선택된 리스트 스타일 */
.listinfo.selected {
	background-color: #f5f5f5;
	border-left: 3px solid #ff6600;
	border-right: 3px solid #ff6600;
	margin-left: -3px;
}

/* 매장 상세정보 레이어 팝업 스타일 */
.store-detail-layer {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 800px;
	height: 80vh;
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	z-index: 1000;
	display: flex;
	flex-direction: column;
}

.store-detail-layer .layer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px 0 15px;
	border-bottom: 1px solid #e0e0e0;
	flex-shrink: 0;
	background-color: #fff;
	border-radius: 8px 8px 0 0;
}

.store-detail-layer .layer-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 15px 20px;
	border-top: 1px solid #e0e0e0;
	flex-shrink: 0;
	background-color: #fff;
	border-radius: 0 0 8px 8px;
}

.store-detail-layer .layer-header h3 {
	margin: 0;
	font-family: 'SCDream4';
	font-size: 18px;
	font-weight: bold;
}

.store-detail-layer .close-btn {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #666;
}

.store-detail-layer .layer-content {
	flex-grow: 1;
	overflow: auto;
	position: relative;
	margin: 0 !important;
}

#storeDetailFrame {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
	overflow: visible;
}

.store-detail-layer .bottom-close-btn {
	font-family: 'SCDream4';
	padding: 8px 20px;
	background-color: #ff832b;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.2s;
}

.store-detail-layer .bottom-close-btn:hover {
	background-color: #ff6600;
}

/* 배경 오버레이 */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(5px);
	z-index: 999;
}

.area-selection-guide {
	font-size: 13px;
	color: #888;
	margin-top: 3px;
	margin-bottom: 0;
}

.area-selection-guide_notice {
	font-size: 13px;
	color: #ff6600;
	margin-top: 3px;
	margin-bottom: 0;
}

/* 빈 관심지역 메시지 스타일 */
.empty-area-message {
	padding: 30px 0;
	text-align: center;
	color: #888;
	font-size: 16px;
	line-height: 1.6;
	background-color: #f9f9f9;
	border-radius: 5px;
	margin: 0;
}

.empty-area-message p:first-child {
	font-weight: bold;
	color: #666;
	margin-bottom: 5px;
}

.info-icon {
	position: absolute;
	left: 0;
	top: 0;
	display: inline-block;
	width: 13px;
	height: 13px;
	background-color: #007bff;
	border-radius: 50%;
}

.info-icon:before {
	content: 'i';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: white;
	font-size: 10px;
	font-style: normal;
	font-weight: bold;
	text-align: center;
	line-height: 14px;
}

.condition-link__list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #f8f9fa;
	border-radius: 0 0 20px 20px;
	/* padding: 15px 20px; */
	/* box-shadow: 0 2px 5px rgba(0,0,0,0.05); */
	transition: all 0.3s ease;
}

.condition-link__list:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.condition-link__area::after {
	content: '';
	height: 0px;
}

.condition-link__area-link::before {
	content: '';
	display: inline-block;
	width: 0px;
	height: 0px;
	margin: 19px 4px 0 10px;
}

.condition-link__area-content {
	display: flex;
	align-items: center;
	font-size: 16px;
	color: #333;
	height: 69px;
}

.location-icon {
	color: #f87e0f;
	margin-right: 0px;
	font-size: 18px;
}

.condition-link__area-action {
	background-color: #f87e0f;
	color: white;
	border-radius: 5px;
	padding: 15px 10px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	top: 20px;
	right: 0px;
	width: auto;
	height: 30px;
}

.condition-link__area-action i {
	margin-right: 5px;
}

.condition-link__area-action:hover {
	/* background-color: #f87e0f; */
	transform: translateY(-2px);
}

/* 빈 영역 메시지 스타일 */
.empty-area-message {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 20px;
	background-color: #f8f9fa;
	border-radius: 10px;
	margin: 0 0 20px;
	text-align: center;
}

.empty-icon {
	font-size: 60px;
	color: #007bff;
	margin-bottom: 20px;
	opacity: 0.7;
}

.empty-area-message p {
	margin: 5px 0;
	color: #6c757d;
	font-size: 16px;
}

.register-area-btn {
	margin-top: 25px;
	background-color: #007bff;
	color: white;
	border-radius: 50px;
	padding: 12px 25px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	box-shadow: 0 4px 6px rgba(0, 123, 255, 0.2);
}

.register-area-btn i {
	margin-right: 8px;
	font-size: 18px;
}

.register-area-btn:hover {
	background-color: #0069d9;
	transform: translateY(-2px);
	box-shadow: 0 6px 8px rgba(0, 123, 255, 0.3);
}

/* 안내 문구 박스 스타일 */
.area-info-box {
	background-color: #f8f9fa;
	border: 1px solid #e1e8ed;
	border-left: 4px solid #007bff;
	border-radius: 0 5px 5px 0;
	padding: 15px 20px;
	margin: 30px 0;
}

.area-info-box p {
	position: relative;
	padding-left: 20px;
	margin-bottom: 2px;
	font-size: 13px;
	line-height: 1;
	margin: 8px 0;
	color: #495057;
	display: flex;
	align-items: center;
}

.area-info-box p:last-child {
	margin-bottom: 0;
}

/* 관심지역 리스트 항목 스타일 (지역이 추가되었을 때) */
.area-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #f8f9fa;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 10px;
	transition: all 0.3s ease;
	border-left: 3px solid #007bff;
}

.area-item:hover {
	background-color: #e9ecef;
	transform: translateX(3px);
}

.area-item__name {
	display: flex;
	align-items: center;
}

.area-item__name i {
	color: #007bff;
	margin-right: 10px;
}

.area-item__delete {
	color: #dc3545;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 16px;
	opacity: 0.7;
	transition: all 0.3s ease;
}

.area-item__delete:hover {
	opacity: 1;
	transform: scale(1.1);
}

/* 애니메이션 */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.empty-area-message,
.area-info-box,
.area-item {
	animation: fadeIn 0.5s ease-out;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
	.condition-link__list {
		flex-direction: column;
		align-items: flex-start;
	}

	.condition-link__area-action {
		/* margin-top: 10px; */
		align-self: flex-end;
	}

	.empty-area-message {
		padding: 30px 15px;
	}

	.register-area-btn {
		padding: 10px 20px;
	}
}

/* 관심지역 관리 페이지 스타일 */
.cb-local-area-info-box {
	background-color: #f8f9fa;
	/* border-radius: 8px; */
	padding: 25px 20px 15px 20px;
	margin-bottom: 0px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	border-left: 5px solid #007bff;
	margin-top: 0;
}

.cb-local-area-info-box h3 {
	margin-top: 0;
	margin-bottom: 15px;
	color: #007bff;
	font-size: 18px;
	font-weight: bold;
	display: flex;
	align-items: center;
	padding-left: 0;
}

.cb-local-info-title-icon {
	margin-right: 10px;
	font-size: 22px;
	color: #007bff;
}

.cb-local-info-icon {
	position: absolute;
	display: inline-block;
	width: 15px;
	height: 15px;
	top: 0;
	left: 0;
	color: #007bff;
	margin-right: 10px;
	text-align: center;
	background-color: #007bff;
	border-radius: 50%;
}

.cb-local-info-icon:before {
	/* content: 'i'; */
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: white;
	font-size: 13px;
	font-style: normal;
	font-weight: bold;
	text-align: center;
	line-height: 14px;
}

.cb-local-caution-title-icon {
	margin-right: 10px;
	font-size: 22px;
	color: #dc3545;
}

.cb-local-caution-icon {
	position: absolute;
	display: inline-block;
	width: 15px;
	height: 15px;
	top: 0;
	left: 0;
	color: #dc3545;
	margin-right: 10px;
	text-align: center;
}

.cb-local-caution-box {
	background-color: #fff8f8;
	border-left: 5px solid #dc3545;
}

.cb-local-caution-box h3 {
	color: #dc3545;
	padding-left: 0;
}

.cb-local-caution-box p {
	padding-left: 0;
}

.cb-local-area-selection-container {
	margin-top: 20px;
	margin-bottom: 0px;
	background-color: #ffffff;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cb-local-area-selection-box {
	display: flex;
	gap: 15px;
	align-items: center;
	flex-wrap: wrap;
}

.cb-local-select-group {
	flex: 1;
	/* min-width: 100px; */
}

.cb-local-form-control {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ced4da;
	border-radius: 6px;
	font-size: 16px;
	height: 50px;
	background-color: #f9f9f9;
	transition: all 0.3s ease;
	color: #333;
}

.cb-local-form-control:focus {
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
	background-color: #fff;
}

#addAreaBtn {
	padding: 12px 20px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-size: 16px;
	height: 50px;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 100px;
}

#addAreaBtn i {
	margin-right: 8px;
}

#addAreaBtn:hover {
	background-color: #0069d9;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cb-local-area-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background-color: #f8f9fa;
	border-left: 4px solid #007bff;
	border-radius: 6px;
	margin-bottom: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.cb-local-area-item:hover {
	background-color: #e9ecef;
	transform: translateX(5px);
}

.cb-local-area-name {
	font-weight: 500;
	cursor: pointer;
	font-size: 16px;
	color: #333;
	transition: all 0.2s ease;
	flex-grow: 1;
}

.cb-local-area-name:hover {
	color: #dc3545;
	/* text-decoration: line-through; */
}

.cb-local-delete-btn {
	background: none;
	border: none;
	color: #dc3545;
	cursor: pointer;
	font-size: 18px;
	transition: all 0.2s ease;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.cb-local-delete-btn:hover {
	color: #fff;
	background-color: #dc3545;
}

.cb-local-drag-handle {
	cursor: grab;
	color: #6c757d;
	margin-right: 15px;
	font-size: 16px;
}

.cb-local-drag-handle:active {
	cursor: grabbing;
}

.cb-local-sortable-ghost {
	opacity: 0.5;
	background-color: #e9ecef;
}

.cb-local-sortable-ghost {
	opacity: 0.5;
	background-color: #e9ecef;
}

.cb-local-sortable-chosen {
	background-color: #e9ecef;
}

.cb-local-sortable-drag {
	opacity: 0.8;
}

.cb-local-empty-area-message {
	text-align: center;
	padding: 40px 0;
	color: #6c757d;
}

.cb-local-empty-icon {
	font-size: 60px;
	margin-bottom: 20px;
	color: #adb5bd;
}

.cb-local-save-area-container {
	text-align: center;
	margin: 30px 0;
}

#saveAreaBtn {
	padding: 12px 40px;
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 6px;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

#saveAreaBtn i {
	margin-right: 10px;
}

#saveAreaBtn:hover {
	background-color: #0069d9;
	transform: translateY(-2px);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cb-local-info-top {
	margin-top: 0px;
	position: sticky;
	top: 0;
	z-index: 10;
	background-color: #f8f9fa;
}

.bottom_padding_last {
	padding-bottom: 80px;
}

.cb-local-area-info-box p {
	position: relative;
	padding-left: 20px;
	margin-bottom: 2px;
	font-size: 13px;
	line-height: 1.1;
	margin: 8px 0;
	color: #495057;
	display: flex;
	align-items: center;
}

.cb-local-title-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

.cb-local-title-left {
	display: flex;
	align-items: center;
}

.cb-local-area-counter {
	font-size: 14px;
	color: #6c757d;
	background-color: #f8f9fa;
	padding: 5px 12px;
	border-radius: 20px;
	font-weight: normal;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	border: 1px solid #e9ecef;
	transition: all 0.3s ease;
	margin-left: auto; /* 우측 끝으로 밀어냄 */
}

.cb-local-area-counter strong {
	color: #007bff;
	font-size: 16px;
	font-weight: bold;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
	.cb-local-area-selection-box {
		/* flex-direction: column; */
		gap: 10px;
	}

	.cb-local-select-group {
		width: 100%;
	}

	.cb-local-area-selection-box #addAreaBtn {
		/* width: 100%; */
	}

	/* #selectedAreaDisplay {
		min-height: 100px;
		max-height: 100px;
	} */

	.area-select-layer {
		max-height: 90%;
	}

	#saveAreaBtn {
		padding: 12px 20px;
	}
}

.cb-local-store-empty {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 250px;
	background-color: #f9f9f9;
	border-radius: 8px;
	border: 1px dashed #ccc;
}

.cb-local-store-empty-message {
	text-align: center;
	padding: 30px;
	color: #666;
}

.cb-local-store-empty-message p {
	margin: 10px 0;
	font-size: 16px;
}

.cb-local-store-btn-register-empty {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 20px;
	background-color: #007bff;
	color: white;
	border-radius: 5px;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cb-local-store-btn-register-empty:hover {
	background-color: #0056b3;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.cb-local-store-btn-register-empty i {
	margin-right: 8px;
}

/* 페이지네이션 스타일 */
.cb-local-store-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 30px 0;
}

.cb-local-store-page-nav,
.cb-local-store-page-num {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	border-radius: 5px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.cb-local-store-page-num {
	background-color: #f5f5f5;
	color: #555;
	font-weight: 500;
}

.cb-local-store-page-num:hover {
	background-color: #e0e0e0;
}

.cb-local-store-page-num.cb-local-store-active {
	background-color: #007bff;
	color: white;
}

.cb-local-store-page-nav {
	background-color: #f0f0f0;
	color: #666;
}

.cb-local-store-page-nav:hover {
	background-color: #e0e0e0;
}

/* 매장 등록 버튼 컨테이너 */
.cb-local-store-register-button-container {
	display: flex;
	justify-content: center;
	margin: 30px 0;
}

/* 매장 등록 폼 스타일 */
.cb-local-store-form {
	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	padding: 30px;
	margin-bottom: 30px;
}

.cb-local-store-form-row {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
	border-bottom: 1px solid #f0f0f0;
	padding-bottom: 20px;
}

.cb-local-store-form-row:last-child {
	border-bottom: none;
}

.cb-local-store-label {
	font-size: 15px;
	font-weight: 600;
	color: #333;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.cb-local-store-label .required {
	color: #e74c3c;
	margin-left: 4px;
}

.cb-local-store-input {
	width: 100%;
}

.cb-local-store-input input[type='text'],
.cb-local-store-input textarea,
.cb-local-store-input select {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 10px 12px;
	font-size: 14px;
	transition: border-color 0.3s;
}

.cb-local-store-input select {
	height: 36px !important;
	padding: 0 12px 0 12px !important;
	background-color: #fff;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 10px center;
	background-size: 16px;
}

.cb-local-store-input input[type='text']:focus,
.cb-local-store-input textarea:focus,
.cb-local-store-input select:focus {
	border-color: #007bff;
	outline: none;
	box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

.cb-local-store-input textarea {
	min-height: 120px;
	resize: vertical;
}

.cb-local-store-description {
	font-size: 13px;
	color: #666;
	margin-top: 6px;
}

.cb-local-store-select-container {
	display: flex;
	gap: 10px;
}

.cb-local-store-select-container select {
	flex: 1;
}

.cb-local-store-date-picker {
	display: flex;
	align-items: center;
	gap: 10px;
}

.cb-local-store-date-input {
	flex: 1;
	cursor: pointer;
	background-color: #fff;
}

.cb-local-store-image-container {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 10px;
}

.cb-local-store-upload-box {
	width: 150px;
	height: 150px;
	border: 2px dashed #ddd;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
	background-color: #f9f9f9;
	position: relative;
	overflow: hidden;
}

.cb-local-store-upload-box:hover {
	border-color: #007bff;
	background-color: #f0f7ff;
}

.cb-local-store-upload-text {
	text-align: center;
	color: #666;
	font-size: 13px;
}

.cb-local-store-upload-text i {
	display: block;
	font-size: 24px;
	margin-bottom: 8px;
	color: #007bff;
}

.cb-local-store-preview-container {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 20px;
}

.cb-local-store-preview-item {
	width: 150px;
	height: 150px;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cb-local-store-preview-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cb-local-store-delete-btn {
	position: absolute;
	top: 5px;
	right: 5px;
	background-color: rgba(255, 255, 255, 0.8);
	border: none;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #e74c3c;
	font-size: 12px;
	transition: all 0.3s;
}

.cb-local-store-delete-btn:hover {
	background-color: #e74c3c;
	color: white;
}

.cb-local-store-button-container {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 30px;
}

.cb-local-store-submit-btn {
	background-color: #007bff;
	color: white;
	border: none;
	border-radius: 4px;
	padding: 12px 30px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s;
}

.cb-local-store-submit-btn:hover {
	background-color: #0056b3;
}

.cb-local-store-cancel-btn {
	background-color: #f1f1f1;
	color: #333;
	border: none;
	border-radius: 4px;
	padding: 12px 30px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cb-local-store-cancel-btn:hover {
	background-color: #e0e0e0;
}

.cb-local-event-area-wrapper {
	margin: 0;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.cb-local-event-area-container {
	padding: 16px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	/* background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); */
}

.cb-local-event-area-left {
	display: flex;
	align-items: center;
}

.cb-local-event-area-icon {
	color: #ff6600;
	font-size: 20px;
	margin-right: 12px;
}

.cb-local-event-area-text {
	font-size: 16px;
	font-weight: 500;
	color: #495057;
}

.cb-local-event-area-button {
	background-color: #ff6600;
	color: white;
	border: none;
	border-radius: 8px;
	padding: 10px 18px;
	font-size: 15px;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap; /* 줄바꿈 방지 */
	flex-shrink: 0; /* 버튼 크기 축소 방지 */
	min-width: 50px; /* 최소 너비 설정 */
}

.cb-local-event-area-button:hover {
	background-color: #f6731c;
	box-shadow: 0 4px 10px rgba(66, 99, 235, 0.3);
}

.cb-local-event-area-button i {
	font-size: 14px;
}

.cb-web-update-loading {
	text-align: center;
	padding: 20px;
	display: none;
	color: #ff6600; /* 로딩 아이콘 색상 */
}
