.skeleton-table {
    width: 100%;
    padding: 12px;
}

.skeleton-row {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.skeleton-cell {
    flex: 1;
    height: 16px;
    border-radius: 4px;
    background: #eee;
    overflow: hidden;
    position: relative;
}

.skeleton-card-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.skeleton-card {
    padding: 16px;
    border-radius: 8px;
    background: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.skeleton-block {
    border-radius: 6px;
}

.skeleton-animate {
    background: linear-gradient(90deg, #eee 0%, #f5f5f5 50%, #eee 100%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.2s ease-in-out infinite;
}

@keyframes skeleton-shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}
