/* Copyright 2025 Renofy Ltd. All rights reserved. */
/* === Loading Skeleton Component === */
/* Skeleton loader shown while async content loads */

.loading-skeleton {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    color: var(--color-text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}
