.chimera-infinite-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    width: 100%;
}

.chimera-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--wp--preset--color--contrast, #e0e0e0);
    border-top-color: var(--wp--preset--color--secondary, #333);
    border-radius: 50%;
    animation: chimera-spin 0.8s linear infinite;
}

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

.chimera-infinite-sentinel {
    height: 1px;
    width: 100%;
}
