.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.6);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.popup-content {
	position: relative;
	background: transparent;
	border: none;
	padding: 0;
	max-width: 90vw;
	max-height: 90vh;
}

.popup-image {
	width: 100%;
	max-width: 400px;
	/* Tamaño máximo */
	height: auto;
	border-radius: 8px;
}

.close-btn {
	position: absolute;
	top: -10px;
	right: -10px;
	color: white;
	font-size: 24px;
	font-weight: bold;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 10000;
}
