.scroll-right,
.scroll-left {
  width: 32px;
  height: 32px;
  cursor: pointer;
  border-radius: 9999px;
  background-color: #fff;
  display: none;
  justify-content: center;
  align-items: center;
  border: none;
  position: absolute;
  margin-top: -16px;
  z-index: 3;
  box-shadow: 0px 0px 4px 0px #0000003d;
}

.scroll-right {
  right: 4px;
  top: 37px;
  transform: translateY(-50%);
}

.scroll-left {
  left: 4px;
  top: 37px;
  transform: translateY(-50%);
}

.scroll-left svg {
  transform: rotate(180deg);
}

.carousel-container {
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
