.chatty-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.chatty-viewport {
  overflow: hidden;
  width: 100%;
}

.chatty-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.chatty-slide {
  min-width: 100%;
  height: 100%;
  padding: 5px;
  box-sizing: border-box;
}

.chatty-slide img,
.chatty-slide iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  border: none;
}

/* Arrows */
.chatty-prev,
.chatty-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 5px 15px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}

.chatty-prev { left: 10px; }
.chatty-next { right: 10px; }

/* Dots */
.chatty-dots {
  text-align: center;
  margin-top: 10px;
}

.chatty-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 4px;
  cursor: pointer;
}

.chatty-dot.active {
  background: #333;
}
