
table td {
    width: 20%;              /* 5 images per row */
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    overflow: visible;       /* IMPORTANT */
    position: relative;
}

/* Gallery container */
.carousel-track-container {
    overflow: visible;       /* IMPORTANT */
}

/* Image style */
.carousel-track-container .slide img {
    width: 100%;
    max-width: 180px;
    height: auto;
    display: block;
    margin: auto;
    transition: transform 0.3s ease;
    transform: scale(1);
    position: relative;
    z-index: 1;
    cursor: pointer;
}

/* Hover enlarge */
.carousel-track-container .slide img:hover {
    transform: scale(4.5);
    z-index: 9999;
}

/* Mobile tap */
.carousel-track-container .slide img:active {
    transform: scale(2.5);
    z-index: 9999;
}