.carousel-container {
  border-radius: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.carousel-container .carousel-heading {
  text-align: center;
}

.carousel {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 1rem;
  margin: 0.5rem;
  max-width: 70rem;
  width: 100%;
  box-sizing: border-box;
}

.carousel-items {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  overflow-x: auto;
  width: 100%;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.carousel-items>* {
  scroll-snap-align: start;
}

.carousel-items::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.carousel-item:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

.carousel-item img {
  width: 150px;
  height: auto;
  margin: 0 0.7rem;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.carousel-next,
.carousel-prev {
  font-size: 2rem;
  opacity: 0.6;
}

.carousel-next:hover,
.carousel-prev:hover {
  opacity: 1;
  cursor: pointer;
}

.carousel-next.disabled,
.carousel-prev.disabled {
  opacity: 0.3;
}
