.edc-carousel {
  display: flex;
  overflow: hidden;
  position: relative;
}

.edc-slide {
  min-width: 100%;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}

.edc-prev, .edc-next {
  position: absolute;
  top: 50%;
  background: black;
  color: white;
  padding: 8px 12px;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.edc-prev { left: 10px; }
.edc-next { right: 10px; }