/* Modal container */
.cmg-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8); /* Black background with opacity */
}

/* Modal content */
.cmg-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 4px;
    position: relative;
    max-width: 90%;
}

/* Close button */
.cmg-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

/* Custom Pagination Thumbnails */
.custom-pagination {
    text-align: center;
    padding-top: 10px;
}

.custom-pagination span {
    display: inline-block;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    opacity: 0.5;
    cursor: pointer;
}

.custom-pagination .swiper-pagination-bullet-active {
    opacity: 1;
}

.custom-pagination img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}
