.position-relative {
    position: relative !important;
}

.dtr-swiper-prev {
    left: -30px;
}

.dtr-swiper-next {
    right: -30px;
}

.dtr-swiper-next,
.dtr-swiper-prev {
    background-color: #007bff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dtr-swiper-next:after,
.dtr-swiper-prev:after {
    font-family: swiper-icons;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.dtr-swiper-next:hover,
.dtr-swiper-prev:hover {
    background-color: #0056b3;
    transform: translateY(-50%) scale(1.1);
}

.dtr-testimonial-wrapper {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 10px;
}

@media (max-width: 768px) {
    .dtr-swiper-prev {
        left: 0;
    }
    
    .dtr-swiper-next {
        right: 0;
    }
    
    .dtr-testimonial-carousel {
        padding: 0 40px;
    }
}