.testimonial-slideshow {
  max-width: 600px;
  margin: auto;
  text-align: center;
  position: relative;
  padding: 40px 20px;
  background-color: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.testimonial {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.testimonial.active {
  display: block;
  opacity: 1;
}

button.prev,
button.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.2);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  user-select: none;
}

.testimonialImage {
  /* border: 3px solid rgb(185, 3, 3); */
  width: 350px;
  height: 55px;
  margin: 0 10px 20px 10px;
  /*width: 100%;*/
  border-radius: 10px;
  /*ight: auto;*/
}

button.prev:hover,
button.next:hover {
  background-color: rgba(0,0,0,0.4);
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

.dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.active-dot {
  background-color: #717171;
}
