/* Swipe Navigation Indicators */
.swipe-indicator {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  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: 9999;
}

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

.swipe-indicator__label {
  position: absolute;
  top: 100%;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #007bff;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 12px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.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;
}

