.airbnb-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 70vh;
}

.airbnb-slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 300%;
}

.airbnb-slide {
  width: 100%;
  flex-shrink: 0;
}

.airbnb-slide img {
  width: auto;
  
}

/* Navigation Arrows */
.airbnb-prev,
.airbnb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 12px;
  cursor: pointer;
  font-size: 24px;
  z-index: 10;
}

.airbnb-prev { left: 15px; }
.airbnb-next { right: 15px; }

/* Pagination Dots */
.airbnb-dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  display: inline-block;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background-color: #717171;
}
