.pde-inline-loading {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pde-inline-loading::before {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    content: "";
    opacity: 0.8;
    animation: pde-inline-loading-spin 0.7s linear infinite;
}

.pde-inline-loading[aria-busy="true"] {
    cursor: wait;
}

.pde-inline-loading-zone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    text-align: center;
}

@keyframes pde-inline-loading-spin {
    to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .pde-inline-loading::before {
        animation-duration: 1.8s;
    }
}
