/* Stili per le miniature in PhotoSwipe */
.pswp__thumbnails {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    text-align: center;
}

.pswp__thumbnails-container {
    display: inline-block;
}

.pswp__thumbnail {
    display: inline-block;
    width: 80px;
    height: 80px;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid transparent;
    object-fit: cover;
    transition: border-color 0.3s;
}

.pswp__thumbnail:hover {
    border-color: #fff;
}

/* Aggiusta lo spazio per le miniature */
.pswp__scroll-wrap {
    padding-bottom: 100px;
}