.gallery-wrapper {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-container {
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
}

.gallery-item {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.5s ease;
}

.gallery-arrow {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1;
}

.gallery-arrow.left {
    margin-right: 10px;
}

.gallery-arrow.right {
    margin-left: 10px;
}