.custom-gallery-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden; /* Ensures no image overflows */
}

.custom-gallery-wrapper {
    width: 100%;
    overflow: hidden; /* Prevents overflow of images */
}

.custom-gallery {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%; /* Adjust width */
}

.custom-gallery img {
    width: 100%; /* Ensures each image takes up full container width */
    flex-shrink: 0; /* Prevent shrinking of images */
    height: auto;
}

.custom-prev-btn, .custom-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 18px;
    z-index: 1;
}

.custom-prev-btn {
    left: 10px;
}

.custom-next-btn {
    right: 10px;
}
