.slide-image {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    /* padding: 20px; */
}

.gallery-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 20px;
}

.gallery {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gallery img {
    flex: 0 0 25%;
    width: 25%;
    height: auto;
    margin-right: 5px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.5em;
    z-index: 1;
}

.nav-button:disabled {
    background-color: rgba(0, 0, 0, 0.2);
    cursor: not-allowed;
}

#gallery-prev {
    left: 0;
}

#gallery-next {
    right: 0;
}
