.gallery-container {
    display: flex;
    flex-direction: column;
}

.gallery-slider .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    padding-bottom: 40px;
}

.gallery-slider .owl-nav button.owl-prev,
.gallery-slider .owl-nav button.owl-next {
    cursor: pointer;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: #f6f6f6;
    border-radius: 100%;
    display: block;
    font-size: 10px;
    outline: none !important;
    color: #53165f;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.gallery-slider .owl-nav button.owl-prev:hover,
.gallery-slider .owl-nav button.owl-next:hover {
    background-color: #53165f;
    color: #fff;
}

/* Override existing styles that might conflict */
.gallery-slider .owl-nav button.owl-prev {
    right: auto  !important;
    transform: translateX(-60px);
    top: auto !important;
    bottom: auto !important;
}

.gallery-slider .owl-nav button.owl-next {
    right: auto !important;
    transform: translateX(60px);
    top: auto !important;
    bottom: auto !important;
}
