
.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: auto;
  background: #f9f9f9;
  border-radius: 8px;
}

.carousel-slide {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.carousel-item {
  flex: 0 0 100%;
  padding: 2rem;
  box-sizing: border-box;  
}

.carousel-controls {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
}

.carousel-controls button {
  background: rgba(0,0,0,0.1);
  border: none;
  color: white;
  font-size: 24px;
  padding: 0.5rem 0rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.indicator {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background-color: #a6a6a6;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.indicator.active {
  background-color: #009f73;
}

.carousel-item _img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}