.slideshowContainerCustom {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding: 20px 0;
  gap: 20px;
}

.slideItemCustom {
  scroll-snap-align: center;
  position: relative;
  min-width: 80%;
  transition: transform 0.5s ease, opacity 0.5s ease;
  flex-shrink: 0;
}

.slideItemCustom img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.slideshowContainerCustom::-webkit-scrollbar {
  display: none;
}