/*250904 - 클린신고센터 추가*/
 	.dclr_cntr_tit {font-size: 1.5rem; margin-bottom: 16px;}
	
/* 개인정보 수집 및 이용 안내 모달 스타일 */
#privacyModal {
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background-color: rgba(0, 0, 0, 0.5) !important;
	z-index: 99999 !important;
	display: none !important;
}

#privacyModal.show {
	display: block !important;
	visibility: visible !important;
}

/* 인라인 스타일이 적용될 때 강제로 표시 */
#privacyModal[style*="display: block"] {
	display: block !important;
	visibility: visible !important;
}

/* 모달이 보이도록 하는 강제 스타일 */
#privacyModal.force-show {
	display: block !important;
	visibility: visible !important;
}

/* 모달이 확실히 보이도록 하는 스타일 */
#privacyModal.privacy-modal {
	display: none !important;
}

#privacyModal.privacy-modal.show {
	display: block !important;
	visibility: visible !important;
}

.privacy-modal-content {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: white;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	width: 90%;
	max-width: 600px;
	max-height: 80vh;
	overflow-y: auto;
	margin: 0;
}

.privacy-modal-header {
	position: relative;
	padding: 24px 24px 16px 24px;
	border-bottom: 1px solid #e5e5e5;
}

.privacy-modal-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #333;
	text-align: center;
	margin: 0;
}

.privacy-modal-close {
	position: absolute;
	top: 20px;
	right: 20px;
	background: none;
	border: none;
	font-size: 24px;
	color: #666;
	cursor: pointer;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.privacy-modal-body {
	padding: 24px;
}

.privacy-content {
	background: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	padding: 20px;
	margin-bottom: 24px;
}

.privacy-content h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #333;
	margin: 0 0 16px 0;
}

.privacy-content ol {
	margin: 0;
	padding-left: 20px;
}

.privacy-content li {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #555;
	margin-bottom: 8px;
}

.privacy-consent {
	margin-bottom: 24px;
}

.privacy-consent h5 {
	font-size: 1rem;
	font-weight: 600;
	color: #333;
	margin: 0 0 16px 0;
}

.consent-options {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.consent-option {
	display: flex;
	align-items: center;
	padding: 12px 16px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.consent-option:hover {
	border-color: #007bff;
	background-color: #f8f9ff;
}

.consent-option.selected {
	border-color: #007bff;
	background-color: #e3f2fd;
}

.consent-option input[type="radio"] {
	margin-right: 12px;
	width: 18px;
	height: 18px;
	accent-color: #007bff;
}

.consent-option label {
	font-size: 0.95rem;
	color: #333;
	cursor: pointer;
	margin: 0;
	flex: 1;
}

.privacy-modal-footer {
	padding: 16px 24px 24px 24px;
	text-align: center;
}

.privacy-submit-btn {
	background: #007bff;
	color: white;
	border: none;
	border-radius: 8px;
	padding: 14px 32px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.privacy-submit-btn:hover {
	background: #0056b3;
}

.privacy-submit-btn:disabled {
	background: #6c757d;
	cursor: not-allowed;
}

.privacy-submit-btn.touching {
	background: #0056b3;
	transform: scale(0.98);
}

/* 터치 디바이스 최적화 */
.consent-option {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	min-height: 44px; /* 터치 타겟 최소 크기 */
}

.privacy-submit-btn {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	min-height: 44px; /* 터치 타겟 최소 크기 */
}

.privacy-modal-close {
	min-width: 44px;
	min-height: 44px;
}

/* 스크롤 최적화 */
.privacy-modal-content {
	-webkit-overflow-scrolling: touch;
}

/* 태블릿 대응 */
@media (max-width: 1024px) {
	.privacy-modal-content {
		width: 95%;
		max-width: 500px;
	}
}

/* 모바일 대응 */
@media (max-width: 768px) {
	.privacy-modal-content {
		width: 95%;
		max-width: none;
		margin: 10px;
		max-height: 90vh;
	}
	
	.privacy-modal-header {
		padding: 16px;
	}
	
	.privacy-modal-title {
		font-size: 1.3rem;
	}
	
	.privacy-modal-body {
		padding: 16px;
	}
	
	.privacy-content {
		padding: 16px;
	}
	
	.privacy-content h4 {
		font-size: 1rem;
	}
	
	.privacy-content li {
		font-size: 0.9rem;
		line-height: 1.5;
	}
	
	.privacy-consent h5 {
		font-size: 0.95rem;
	}
	
	.consent-option {
		padding: 10px 12px;
	}
	
	.consent-option label {
		font-size: 0.9rem;
	}
	
	.privacy-modal-footer {
		padding: 12px 16px 16px 16px;
	}
	
	.privacy-submit-btn {
		padding: 12px 24px;
		font-size: 0.95rem;
		width: 100%;
	}
}

/* 소형 모바일 대응 */
@media (max-width: 480px) {
	.privacy-modal-content {
		width: 98%;
		margin: 5px;
		max-height: 95vh;
	}
	
	.privacy-modal-header {
		padding: 12px;
	}
	
	.privacy-modal-title {
		font-size: 1.2rem;
	}
	
	.privacy-modal-close {
		top: 15px;
		right: 15px;
		font-size: 20px;
	}
	
	.privacy-modal-body {
		padding: 12px;
	}
	
	.privacy-content {
		padding: 12px;
	}
	
	.privacy-content h4 {
		font-size: 0.95rem;
		margin-bottom: 12px;
	}
	
	.privacy-content li {
		font-size: 0.85rem;
		line-height: 1.4;
		margin-bottom: 6px;
	}
	
	.privacy-consent h5 {
		font-size: 0.9rem;
		margin-bottom: 12px;
	}
	
	.consent-options {
		gap: 8px;
	}
	
	.consent-option {
		padding: 8px 10px;
	}
	
	.consent-option input[type="radio"] {
		width: 16px;
		height: 16px;
		margin-right: 10px;
	}
	
	.consent-option label {
		font-size: 0.85rem;
	}
	
	.privacy-modal-footer {
		padding: 10px 12px 12px 12px;
	}
	
	.privacy-submit-btn {
		padding: 10px 20px;
		font-size: 0.9rem;
	}
}

/* 가로 모드 모바일 대응 */
@media (max-width: 768px) and (orientation: landscape) {
	.privacy-modal-content {
		max-height: 95vh;
	}
	
	.privacy-modal-body {
		padding: 12px;
	}
	
	.privacy-content {
		padding: 12px;
		margin-bottom: 16px;
	}
	
	.privacy-consent {
		margin-bottom: 16px;
	}
}