/* Stil za slideshow recenzija */
.review-slideshow {
  position: relative;
  overflow: hidden;
}

.review {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.review.active {
  opacity: 1;
}

/* Stil za slideshow kontejner */
.review-slideshow {
  position: relative;
  width: 80%; /* Prilagodite širinu prema potrebi */
  height: auto;
  margin: auto;
  text-align: center;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(25, 25, 25, 1) 100%
  );
  padding: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  transition: height 0.5s ease-in-out; /* Dodajte glatku tranziciju visine */
}

/* Svaka recenzija */
.review {
  top: 0;
  left: 0;
  width: 100%; /* Preuzmi širinu roditelja */
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 0.4s;
  color: white;
}

/* Aktivna recenzija */
.review.active {
  position: relative; /* Vraća normalan protok za aktivnu recenziju */
  opacity: 1;
  visibility: visible;
}

/* Tekst recenzije */
.review p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 10px;
}

.review h4 {
  font-size: 16px;
  margin-top: 5px;
}

/* Kontrole za ručno listanje */
.review-controls {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  margin: 20px 0px;
  width: 100%;
  box-sizing: border-box;
}
