﻿.zoomable {
    cursor: zoom-in;
    transition: transform 0.2s;
}

.zoomable:active {
        transform: scale(2);
        cursor: zoom-out;
    }

img.zoomable {
    touch-action: none;
    transform-origin: center;
    transition: transform 0.2s ease;
}
/* You can extend with swipe or responsive styles here */
