.popup-manager-popup {
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	overflow: hidden;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.popup-manager-header {
	background: #f8f9fa;
	padding: 12px 15px;
	border-bottom: 1px solid #eee;
	user-select: none;
}

.popup-manager-title {
	font-weight: 600;
	font-size: 14px;
	color: #333;
}

.popup-manager-content {
	max-height: 70vh;
	overflow-y: auto;
	line-height: 1.6;
}

.popup-manager-content img {
	max-width: 100%;
	height: auto;
}

.popup-manager-close-bar {
	background: #f8f9fa;
	padding: 10px 15px;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.popup-manager-hide-label {
	font-size: 13px;
	color: #666;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 5px;
}

.popup-manager-hide-label input[type="checkbox"] {
	margin: 0;
}

.popup-close-btn {
	padding: 6px 16px;
	border: 1px solid #ccc;
	background: #fff;
	cursor: pointer;
	border-radius: 4px;
	font-size: 13px;
	transition: background-color 0.15s ease, border-color 0.15s ease;
}

.popup-close-btn:hover {
	background: #f0f0f0;
	border-color: #bbb;
}

/* Mobile responsive */
@media (max-width: 768px) {
	.popup-manager-popup {
		left: 10px !important;
		right: 10px;
		width: auto !important;
		max-width: calc(100% - 20px);
	}
}
