// Classy Carousel Component
// Better contrast for navigation arrows

// ============================================
// Carousel Controls
// ============================================
.carousel-control-prev,
.carousel-control-next {
  // Add semi-transparent dark background for better contrast
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: opacity 0.3s ease;

  &:hover {
    opacity: 1;
  }

  // Add background circle for better visibility
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 12px;
    width: 50px;
    height: 50px;
  }
}

// Dark mode adjustments
// [data-bs-theme="dark"] {
//   .carousel-control-prev,
//   .carousel-control-next {
//     .carousel-control-prev-icon,
//     .carousel-control-next-icon {
//       background-color: rgba(255, 255, 255, 0.9);
//     }
//   }
// }
