.zoombox-gallery {
    display: flex;
    justify-content: space-around;
    gap: 25px;
}

.zoombox-item img {
    width: 100%;
    cursor: pointer;
    border-radius: 8px;
}

.zoombox-content {
    display: none;
}

.zoombox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.zoombox-inner {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: calc(100vw - 20%);
    width: 100%;
    height: calc(100vh - 20%);
    max-height: 90%;
    overflow-y: auto;
}

.zoombox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}