/* ZOOM MODAL (lightbox) - simple overlay */
#img-zoom-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.85);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1000;
	/* Hidden by default */
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s ease;
}

/* When modal is active (visible) */
#img-zoom-modal.active {
	visibility: visible;
	opacity: 1;
}

/* The zoomed image */
#img-zoom {
	max-width: 90vw;
	max-height: 90vh;
	width: auto;
	height: auto;
	object-fit: contain;
	padding: 2.5vh;
    cursor: pointer;
    background-color: #333;
    border-radius: 1.25vh;
}

/* Simple close button in corner */
#img-zoom-close-btn {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 40px;
	font-weight: bold;
	color: white;
	cursor: pointer;
	background: none;
	border: none;
	font-family: monospace;
	z-index: 1001;
}

#img-zoom-close-btn:hover {
	color: #ddd;
}
