.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.image-viewer {
    position: fixed;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 50%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

#enlargedImage {
    max-width: 100%;
    max-height: 100%;
    user-select: none;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

/* Add swipe styles */
.swipe-left,
.swipe-right {
    cursor: pointer;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    /* background-color: #ffffff; */
    font-size: 24px;
    font-weight: bold;
    padding: 20px;
    user-select: none;
}

.swipe-left {
    left: 10px;
}

.swipe-right {
    right: 10px;
}