/* Skeleton Loader Styles */

.skeleton {
    background: linear-gradient(90deg, 
        rgba(139, 90, 191, 0.1) 25%, 
        rgba(139, 90, 191, 0.2) 50%, 
        rgba(139, 90, 191, 0.1) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 12px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    height: 300px;
    padding: 24px;
    background: var(--card-bg);
    border: 1px solid rgba(139, 90, 191, 0.2);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skeleton-line {
    height: 20px;
    border-radius: 4px;
}

.skeleton-line.short {
    width: 60%;
}

.skeleton-line.medium {
    width: 80%;
}

.skeleton-line.full {
    width: 100%;
}

.skeleton-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

