/*==========================================
  Smooth Wave Animation for Table Body
==========================================*/
@keyframes smooth-wave {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* Apply the animation to the entire table body */
.loading-table > tbody {
    animation: smooth-wave 1s ease-in-out infinite;
}
