import {css} from 'lit'; export const styles = css` :host { display: block; box-sizing: border-box; font-family: inherit; } .skeleton-shape { background-color: var(--pb-skeleton-color); animation: pulse 1.5s infinite ease-in-out; display: flex; align-items: center; justify-content: center; } @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } } `;