/* Button save spinner only — no full-page loader overlay. */
.mll-btn-loading {
    position: relative;
    pointer-events: none !important;
    opacity: 0.82 !important;
}

.mll-btn-loading::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    width: 14px;
    height: 14px;
    margin-top: -7px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    animation: mll-spin 0.7s linear infinite;
}

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

@media (prefers-reduced-motion: reduce) {
    .mll-btn-loading::after {
        animation: none;
    }
}
