/* Swipe feedback animation */
.swipe-feedback {
  position: fixed;
  top: 0;
  width: 40px;
  height: 100vh;
  background-color: rgba(156, 9, 255, 0.1);
  z-index: 1000;
  pointer-events: none;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.swipe-left {
  right: 0;
  animation-name: swipeLeftFeedback;
}

.swipe-right {
  left: 0;
  animation-name: swipeRightFeedback;
}

@keyframes swipeLeftFeedback {
  0% {
    opacity: 0;
    width: 0;
  }
  50% {
    opacity: 1;
    width: 60px;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}

@keyframes swipeRightFeedback {
  0% {
    opacity: 0;
    width: 0;
  }
  50% {
    opacity: 1;
    width: 60px;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}
