/* Custom CSS for the Testimonial Slider Module */
.dtsm-testimonial-slider {
    width: 100%;
    height: auto; /* Adjust as needed */
    padding: 20px 20px; /* Added horizontal padding for box-shadow */
    box-sizing: border-box;
    overflow: hidden; /* Ensure only the active slide is visible */
}

.dtsm-testimonial-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #fff;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    flex-direction: column;
}

.dtsm-testimonial-slider .testimonial-content {
    max-width: 700px;
    margin: 0 auto;
}

.dtsm-testimonial-slider .testimonial-image {
    margin-bottom: 20px;
}

.dtsm-testimonial-slider .testimonial-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #eee;
}

.dtsm-testimonial-slider .testimonial-quote {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    font-style: italic;
}

.dtsm-testimonial-slider .testimonial-author {
    font-size: 1.1em;
    font-weight: bold;
    color: #555;
    margin-bottom: 5px;
}

.dtsm-testimonial-slider .testimonial-title {
    font-size: 0.9em;
    color: #777;
}

/* Swiper Navigation and Pagination Customization */
.dtsm-testimonial-slider .swiper-button-next,
.dtsm-testimonial-slider .swiper-button-prev {
    color: #007aff; /* Swiper default blue */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for exact vertical centering */
}

.dtsm-testimonial-slider .swiper-button-prev {
    left: 20px; /* Move inwards from the left */
}

.dtsm-testimonial-slider .swiper-button-next {
    right: 20px; /* Move inwards from the right */
}

.dtsm-testimonial-slider .swiper-pagination-bullet-active {
    background: #007aff; /* Swiper default blue */
}