.thumb-tile {
    width: 200px;
    height: 200px;
    overflow: hidden;
    display: inline-block;
    padding:10px;
    border-radius: 30px;
}

.thumb-tile img {
    height: 200px;
    width: auto;
    object-fit: cover;
    object-position: center;
}

.thumb-wrapper {
    position: relative;
    display: inline-block;
}

.thumb-caption {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 4px 0;
    display: none;
}

.thumb-wrapper:hover .thumb-caption {
    display: block;
}
.gallery-table td {
    padding: 6px;
    text-align: center;
}
.gallery-table img {
    width: 100px;
    cursor: zoom-in;
    border: 1px solid #ccc;
}
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    text-align: center;
}
.popup img {
    margin-top: 50px;
    max-width: 90%;
    max-height: 90%;
}
#popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#popup img {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    display: block;
}

#closePopup {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 32px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}