/* styles.css */
.zoomable {
    transition: transform 0.2s; /* Animation for zoom effect */
    max-width: 120%; /* Responsive scaling */
    height: auto;
    cursor: pointer;
	}

.zoomable.zoomed {
    transform: scale(12); /* Scale the image to 2 times its size */
    z-index: 100; /* Ensure it stays on top */
    border: solid #343434 thin; /* Set the border color to black */
	border-left: 40%; /* Border width set at 15% */
    box-sizing: border-box; /* Include border in element's width calculations */
	background-color: dimgray;
	 
}