/* PUB-ADD: 수신거부 팝업 스타일 */

.pub-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 10000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
}

.pub-popup-container {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	max-width: 500px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
}

.pub-popup-header {
	padding: 20px 24px 16px;
	border-bottom: 1px solid #e0e0e0;
	background: #f8f9fa;
	border-radius: 8px 8px 0 0;
}

.pub-popup-title {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	text-align: center;
}

.pub-popup-body {
	padding: 24px;
}

.pub-consultation-form {
	width: 100%;
}

.pub-form-group {
	margin-bottom: 20px;
}

.pub-form-label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #333;
	font-size: 14px;
}

.pub-form-input {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	background-color: #fff;
	box-sizing: border-box;
	transition: border-color 0.2s ease;
}

.pub-form-input:focus {
	outline: none;
	border-color: #007bff;
	box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.pub-form-instruction {
	margin: 20px 0;
	padding: 16px;
	background-color: #f8f9fa;
	border-radius: 4px;
	border-left: 4px solid #007bff;
}

.pub-form-instruction p {
	margin: 0;
	font-size: 13px;
	color: #666;
	line-height: 1.4;
}

.pub-form-actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 24px;
}

.pub-submit-btn, .pub-cancel-btn {
	padding: 12px 24px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	min-width: 80px;
}

.pub-submit-btn {
	background-color: #007bff;
	color: #fff;
	border-color: #007bff;
}

.pub-submit-btn:hover {
	background-color: #0056b3;
	border-color: #0056b3;
}

.pub-cancel-btn {
	background-color: #fff;
	color: #333;
}

.pub-cancel-btn:hover {
	background-color: #f8f9fa;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
	.pub-popup-overlay {
		padding: 10px;
	}
	
	.pub-popup-container {
		max-width: 100%;
	}
	
	.pub-popup-header {
		padding: 16px 20px 12px;
	}
	
	.pub-popup-body {
		padding: 20px;
	}
	
	.pub-popup-title {
		font-size: 16px;
	}
	
	.pub-form-actions {
		flex-direction: column;
	}
	
	.pub-submit-btn, .pub-cancel-btn {
		width: 100%;
	}
}









