/* User Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

.fade-in-delay-1 {
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.fade-in-delay-2 {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.fade-in-delay-3 {
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.fade-in-delay-4 {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.animate-slide-left {
    animation: slideInFromLeft 0.5s ease-out;
}

.animate-slide-right {
    animation: slideInFromRight 0.5s ease-out;
}

.animate-scale {
    animation: scaleIn 0.4s ease-out;
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.button-hover {
    transition: all 0.3s ease;
}

.button-hover:hover {
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.table-row-hover {
    transition: background-color 0.2s ease;
}

.table-row-hover:hover {
    background-color: #f5f5f5;
}

