/**
 * Smooth table row animations for cached data
 * 
 * These animations make rows appear smoothly even when data loads instantly from cache.
 * Uses CSS animations for best performance (GPU-accelerated).
 */

/* Fade in animation for table rows - more prominent for visibility */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply fade-in to table rows with longer duration */
.table-row-animate {
  animation: fadeInUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-fill-mode: both;
}

/* More noticeable stagger effect - users will see rows appearing in sequence */
.table-row-animate:nth-child(1) { animation-delay: 0ms; }
.table-row-animate:nth-child(2) { animation-delay: 40ms; }
.table-row-animate:nth-child(3) { animation-delay: 80ms; }
.table-row-animate:nth-child(4) { animation-delay: 120ms; }
.table-row-animate:nth-child(5) { animation-delay: 160ms; }
.table-row-animate:nth-child(6) { animation-delay: 200ms; }
.table-row-animate:nth-child(7) { animation-delay: 240ms; }
.table-row-animate:nth-child(8) { animation-delay: 280ms; }
.table-row-animate:nth-child(9) { animation-delay: 320ms; }
.table-row-animate:nth-child(10) { animation-delay: 360ms; }

/* For rows beyond 10, continue with slight delays */
.table-row-animate:nth-child(n+11) { animation-delay: 400ms; }

/* Alternative: Faster stagger for when you have many rows */
.table-row-animate-fast {
  animation: fadeInUp 0.2s ease-out forwards;
  animation-fill-mode: both;
}

.table-row-animate-fast:nth-child(1) { animation-delay: 0ms; }
.table-row-animate-fast:nth-child(2) { animation-delay: 10ms; }
.table-row-animate-fast:nth-child(3) { animation-delay: 20ms; }
.table-row-animate-fast:nth-child(4) { animation-delay: 30ms; }
.table-row-animate-fast:nth-child(5) { animation-delay: 40ms; }
.table-row-animate-fast:nth-child(n+6) { animation-delay: 50ms; }

/* Smooth fade animation (no movement, just opacity) */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.table-row-fade {
  animation: fadeIn 0.3s ease-out forwards;
}

/* Slide in from left (alternative style) */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.table-row-slide {
  animation: slideInLeft 0.3s ease-out forwards;
  animation-fill-mode: both;
}

/* Reduced motion support - respect user preferences */
@media (prefers-reduced-motion: reduce) {
  .table-row-animate,
  .table-row-animate-fast,
  .table-row-fade,
  .table-row-slide {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* Smooth transition for table state changes */
.table-container {
  transition: opacity 0.15s ease-in-out;
}

.table-container.is-loading {
  opacity: 0.6;
}

/* Flash effect for table when data changes - makes change more noticeable */
@keyframes tableFlash {
  0% {
    background-color: transparent;
  }
  15% {
    background-color: rgba(59, 130, 246, 0.05); /* Subtle blue flash */
  }
  100% {
    background-color: transparent;
  }
}

/* Apply flash animation to table wrapper */
.table-data-changed {
  animation: tableFlash 0.8s ease-out;
}



/*# sourceMappingURL=db1a71e18ec071a1.css.map*/