﻿.spinner-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: 1rem;
}


    .spinner-wrap.overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.25);
        z-index: 9999;
    }


.spinner {
    width: 44px;
    height: 44px;
    border: 4px solid rgba(0,0,0,0.2);
    border-top-color: rgba(0,0,0,0.7);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}


.label {
    font-size: 0.95rem;
    opacity: 0.85;
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
