﻿.busy-cursor, .busy-cursor * {
    cursor: wait !important;
}

.bridge-loader-overlay {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.65); /* soft backdrop */
    z-index: 2100; /* above page chrome */
}

.bridge-loader-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .75rem;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    background: var(--rz-surface, #fff);
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

.bridge-loader-text {
    font: 500 14px/1.2 var(--rz-font-family, system-ui);
    color: var(--rz-text-color, #333);
}

/* Highlighted/selected text readability fix (Lauren punch-list #6).
   The Radzen theme selected --rz-primary-light bg + --rz-on-primary-light text,
   which is low-contrast and hard to read. Force a solid high-contrast pair. */
::selection,
.rz-layout ::selection {
    background-color: rgba(47,111,235,0.28) !important;
}
::-moz-selection,
.rz-layout ::-moz-selection {
    background-color: rgba(47,111,235,0.28) !important;
}


