/* Swipe Navigation Indicators */
.swipe-indicator {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 123, 255, 0.2);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.1s ease-out;
  pointer-events: none;
  z-index: 1000;
}

.swipe-indicator i {
  font-size: 32px;
  color: #007bff;
}

.swipe-indicator--left {
  left: 20px;
}

.swipe-indicator--right {
  right: 20px;
}

.swipe-indicator.active {
  background: rgba(0, 123, 255, 0.3);
}

/* Smooth transition for the swipeable element */
[data-controller*="swipe-navigation"] {
  transition: transform 0.1s ease-out;
  position: relative;
}

