/* _content/PayrocCompLib/Components/Layout/Velzon/VelzonLoadingSpinner.razor.rz.scp.css */
/* Fullscreen overlay spinner (default) */
.spinner[b-03spg44ld9] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

    /* Inline spinner (only shows where placed) */
    .spinner.inline[b-03spg44ld9] {
        position: static; /* no overlay */
        background-color: transparent; /* no backdrop */
        width: auto;
        height: auto;
        display: inline-flex;
        min-height: 32px;
        min-width: 32px;
    }

/* Container for alignment */
.spinner-container[b-03spg44ld9] {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Default (fullscreen) size */
.spinner .spinner-border[b-03spg44ld9] {
    width: 4rem;
    height: 4rem;
    border-width: 0.4rem;
}

/* Smaller inline size */
.spinner.inline .spinner-border[b-03spg44ld9] {
    width: 1.5rem;
    height: 1.5rem;
    border-width: 0.2rem;
}

/* Accessibility: hide visually but keep for screen readers */
.sr-only[b-03spg44ld9] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
