/* Custom animations and specific styles not covered by standard Tailwind config */

@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* Glass table effect on hover */
tbody tr {
    transition: background-color 0.2s ease, transform 0.2s ease;
}

tbody tr:hover {
    background-color: #f8fafc;
}

/* Type Badges */
.badge-entrada {
    background-color: #dcfce7;
    color: #166534;
}

.badge-salida {
    background-color: #fee2e2;
    color: #991b1b;
}

.badge-ajuste {
    background-color: #fef3c7;
    color: #92400e;
}
