/* Sales Explorer (#ResultTable) loading rows */
.se-skel-shimmer {
    display: block;
    border: none;
    border-radius: 6px;
    background: linear-gradient(90deg, #f1f5f9 0%, #e8edf3 45%, #f8fafc 55%, #f1f5f9 100%);
    background-size: 200% 100%;
    animation: se-skel-shimmer 1.35s ease-in-out infinite;
}

.se-skel-row td {
    padding: 1rem 1.5rem;
    vertical-align: middle;
}

.se-skel-store {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.se-skel-line {
    height: 12px;
}

.se-skel-line--name {
    width: 140px;
}

.se-skel-line--domain {
    width: 110px;
    height: 10px;
}

.se-skel-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.se-skel-pill {
    width: 52px;
    height: 22px;
    border-radius: 999px;
}

.se-skel-pill--wide {
    width: 72px;
}

.se-skel-value {
    width: 64px;
    height: 12px;
}

.se-skel-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.se-skel-line--sm {
    height: 10px;
    width: 88px;
}

.se-skel-thumbs {
    display: flex;
    gap: 6px;
}

.se-skel-thumb {
    width: 96px;
    height: 96px;
    border-radius: 8px;
    flex-shrink: 0;
}

.se-skel-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.se-skel-action {
    width: 36px;
    height: 36px;
    border-radius: 12px;
}

@keyframes se-skel-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}
