.carousel img {
  width: 70px;
  max-height: 70px;
  border-radius: 50%;
  margin-right: 1rem;
  overflow: hidden;
}
.carousel-inner {
  padding: 1em;
}

@media screen and (min-width: 576px) {
  .carousel-inner {
    display: flex;
    width: 90%;
    margin-inline: auto;
    padding: 1em 0;
    overflow: hidden;
  }
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 2);
  }
}
@media screen and (min-width: 768px) {
  .carousel-item {
    display: block;
    margin-right: 0;
    flex: 0 0 calc(100% / 3);
  }
}
.carousel .card {
  margin: 0 0.5em;
  border: 0;
}

.carousel-control-prev,
.carousel-control-next {
  width: 3rem;
  height: 3rem;
  background-color: grey;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.rating {
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    font-size: 20px;
    color: #00a680;
}

.FixedHeightContainer 
        {
            height: 100px;
            width:  100%;
        }

 .Content
        {
            height: 98%;
            width:  100%;
            overflow-y: auto;
        }
/*SCROLLBAR MODIFICATIONS*/

.Content::-webkit-scrollbar {
    width: 8px;
}

.Content::-webkit-scrollbar-thumb {
    background: #909090;
    border-radius: 8px;
}
.Content::-webkit-scrollbar-track {
    background: #FFFFFF;
}



.tripadvisor-testimonial {
      display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
    }

    .tripadvisor-testimonial-items {
     margin: 0; /* Remove default margin */
  padding: 0;
    }
	.tripadvisor-testimonial h5, .tripadvisor-testimonial p, .tripadvisor-testimonial img {
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
}



.carousel-control-prev,
.carousel-control-next {
  background-color: #00AF87; /* TripAdvisor default green color */
  border: none; /* Remove border if any */
  padding: 10px; /* Add some padding for better appearance */
  border-radius: 50%; /* Make it circular, if desired */
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #008F6B; /* Slightly darker green for hover effect */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none; /* Remove default icon */
  color: white; /* Change icon color to white */
  font-size: 20px; /* Increase icon size */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Adding custom content to the span elements */
.carousel-control-prev .carousel-control-prev-icon::before {
  content: '<'; /* Custom icon */
}

.carousel-control-next .carousel-control-next-icon::before {
  content: '>'; /* Custom icon */
}

