@charset "UTF-8";
.carousel-wrapper.user_voice {
  background:#cfdfe5;
}
.carousel-wrapper.mother_voice {
  background:#ffd8d2;
}
.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: height 0.3s ease;
}
.carousel {
  display: flex;
  transition: transform 0.5s ease;
}
.slide {
  flex-shrink: 0;
  width: 100%;
}
.slide img {
  width: 100%;
  height: auto;
  display: block;
}
.nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.prev {
  left: 10px;
}
.next {
  right: 10px;
}
@media (max-width: 768px) {
  .nav-button {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}
