@keyframes fadeIn{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}tr{animation:fadeIn .4s ease forwards}tr:first-child{animation-delay:.1s}tr:nth-child(2){animation-delay:.2s}tr:nth-child(3){animation-delay:.3s}tr:nth-child(4){animation-delay:.4s}tr:nth-child(5){animation-delay:.5s}tr:nth-child(6){animation-delay:.6s}tr:nth-child(7){animation-delay:.7s}tr:nth-child(8){animation-delay:.8s}tr:nth-child(9){animation-delay:.9s}tr:nth-child(10){animation-delay:1s}@keyframes pulse{0%{transform:scale(1)}50%{transform:scale(1.05)}to{transform:scale(1)}}.badge{animation:pulse 2s infinite}.badge:hover{animation:none}.tooltip{position:absolute;top:-45px;left:50%;transform:translateX(-50%);background:var(--primary-dark);color:white;padding:10px 15px;border-radius:8px;font-size:.9rem;font-weight:500;white-space:nowrap;opacity:0;visibility:hidden;transition:var(--transition);z-index:10;box-shadow:0 4px 12px rgba(0,0,0,.15)}.badge:hover .tooltip{opacity:1;visibility:visible;left:-50px}