/* Skeleton loader animations */
@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

.skeleton {
    background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
    background-size: 800px 104px;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

.skeleton-text {
    height: 1em;
    margin-bottom: 0.5em;
}

.skeleton-text.large {
    height: 2em;
    width: 60%;
}

.skeleton-text.small {
    height: 0.8em;
    width: 40%;
}

.skeleton-card {
    min-height: 250px;
}

.skeleton-title {
    height: 1.5em;
    width: 50%;
    margin-bottom: 1em;
}

.skeleton-number {
    height: 2.5em;
    width: 80%;
    margin-bottom: 0.5em;
}

.skeleton-label {
    height: 1em;
    width: 40%;
    margin-bottom: 0.3em;
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
