.lazy-elementor-load {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9; /* Skeleton-like background */
    border-radius: 8px;
    transition: all 0.3s ease;
}

.loading-spinner {
    color: #666;
    font-size: 14px;
    font-family: sans-serif;
}

/* Optional: Rotate the spinner if you add an icon */
.spinner-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}