/* css/kitra-carousel.css */

/* .kitra-carousel-slides-container: overflow-hidden is on the div via Tailwind */
/* .kitra-carousel-slides: flex, transition, transform are handled by Tailwind & JS */
/* .kitra-carousel-slide: w-full flex-shrink-0 are key Tailwind classes */

.kitra-carousel-dots {
  /* Positioning is now handled by Tailwind classes on the div:
     flex justify-center items-center mt-3 mb-1 space-x-2
     mt-3 for margin-top: 0.75rem (12px)
     mb-1 for margin-bottom: 0.25rem (4px)
     space-x-2 for margin-left between dots: 0.5rem (8px)
  */
}

.kitra-carousel-dots .kitra-carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #A0AEC0; /* Tailwind gray-500 equivalent - Inactive dot (medium gray) */
  /* border: 1px solid #718096; Tailwind gray-600 for a slightly darker border */
  border: none; /* Or remove border if background contrast is enough */
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.kitra-carousel-dots .kitra-carousel-dot:hover {
  background-color: #718096; /* Tailwind gray-600 on hover */
}

.kitra-carousel-dots .kitra-carousel-dot.active {
  background-color: #4A5568; /* Tailwind gray-700 equivalent - Active dot (darker gray) */
  /* transform: scale(1.1); Optional: slightly larger active dot */
}

/* Dark mode dot styling (if your page has dark mode) */
.dark .kitra-carousel-dots .kitra-carousel-dot {
  background-color: #4A5568; /* Darker inactive dot for dark mode */
  /* border: 1px solid #718096; */
}

.dark .kitra-carousel-dots .kitra-carousel-dot:hover {
  background-color: #2D3748; /* Tailwind gray-800 on hover in dark mode */
}

.dark .kitra-carousel-dots .kitra-carousel-dot.active {
  background-color: #CBD5E0; /* Tailwind gray-400 - Lighter active dot for dark mode to stand out */
}