.carousel-container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.carousel,
.carousel1,
.carousel2,
.carousel3,
.carousel4 {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.slide {
  flex: 0 0 100%;
}

.slide img {
  width: 100%;
  height: auto;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: solid 1px #aaa;
  background-color: #f06944;
  color: #fff;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  z-index: 1;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  border-radius: 20px;
}

.carousel-button:hover {
  background-color: rgba(240, 105, 68, 0.8);
}

.carousel-button:focus {
  outline: none;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

.carousel-button.click-effect {
  animation: buttonClickEffect 0.3s ease;
}

@keyframes buttonClickEffect {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
