.carousel-container {
  position: relative;
  max-width: 630px;
  margin: 0 auto;
  overflow: hidden;
  align-content: center;
  background-color: #000000;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
    display: flex;
  min-width: 100%;
}

.carousel-slide img {
  width: 100%;
  display: block;
  object-fit: contain;
  height: auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 2px solid;
  border-color: #4a4a8a;
  color: white;
  cursor: pointer;
  padding: 10px 15px;
  font-size: 18px;
  z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 1.0);
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  background: #000000;
  border: 2px solid;
  border-color: #4a4a8a;
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--highlight);
}
