/* /Pages/Auth/FullScreenLoader.razor.rz.scp.css */
/* ── Overlay ── */
.fsl-overlay[b-it6ic34lrf] {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-color: #1d1e26;
    background-size: 28px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fsl-in-b-it6ic34lrf .25s ease forwards;
}

.fsl-overlay.fsl-hiding[b-it6ic34lrf] {
    animation: fsl-out-b-it6ic34lrf .4s ease forwards;
}

/* ── Inner stack ── */
.fsl-content[b-it6ic34lrf] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ── Logo ── */
.fsl-logo[b-it6ic34lrf] {
    width: 240px;
    height: auto;
    margin-bottom: 52px;
    opacity: 0;
    animation: fsl-rise-b-it6ic34lrf .5s ease .1s forwards, fsl-glow-b-it6ic34lrf 3s ease-in-out 1s infinite;
}

/* ── Progress bar ── */
.fsl-bar-track[b-it6ic34lrf] {
    width: 260px;
    height: 2px;
    background: rgba(255, 255, 255, .07);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 16px;
    opacity: 0;
    animation: fsl-rise-b-it6ic34lrf .5s ease .3s forwards;
}

.fsl-bar-fill[b-it6ic34lrf] {
    height: 100%;
    background: linear-gradient(90deg, #1E5FDD 0%, rgba(255, 255, 255, 0.88) 100%);
    border-radius: 999px;
    animation: fsl-shimmer-b-it6ic34lrf 1.8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ── Cycling status message ── */
.fsl-msg-wrap[b-it6ic34lrf] {
    height: 1.15rem;
    opacity: 0;
    animation: fsl-rise-b-it6ic34lrf .5s ease .45s forwards;
}

.fsl-msg[b-it6ic34lrf] {
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
    letter-spacing: .02em;
    transition: opacity .18s ease;
}

.fsl-msg--fade[b-it6ic34lrf] {
    opacity: 0;
}

/* ── Keyframes ── */
@keyframes fsl-in-b-it6ic34lrf {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes fsl-out-b-it6ic34lrf {
    from { opacity: 1; }
    to   { opacity: 0; }
}

@keyframes fsl-rise-b-it6ic34lrf {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0);   }
}

@keyframes fsl-shimmer-b-it6ic34lrf {
    0%   { width: 0%;   margin-left: 0%;    }
    50%  { width: 55%;  margin-left: 22%;   }
    100% { width: 0%;   margin-left: 100%;  }
}

/* subtle breathing glow on the logo — starts after entrance animation */
@keyframes fsl-glow-b-it6ic34lrf {
    0%, 100% { filter: drop-shadow(0 2px 16px rgba(30, 95, 221, 0.25)); }
    50%       { filter: drop-shadow(0 4px 28px rgba(30, 95, 221, 0.50)); }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .fsl-overlay[b-it6ic34lrf],
    .fsl-overlay.fsl-hiding[b-it6ic34lrf],
    .fsl-logo[b-it6ic34lrf],
    .fsl-bar-track[b-it6ic34lrf],
    .fsl-msg-wrap[b-it6ic34lrf] {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .fsl-logo[b-it6ic34lrf] {
        filter: drop-shadow(0 2px 16px rgba(30, 95, 221, 0.3));
    }

    .fsl-bar-fill[b-it6ic34lrf] {
        animation: none;
        width: 50%;
        margin-left: 25%;
    }
}
/* /Pages/Notifications/NotificationsWorkspace.razor.rz.scp.css */
.notif-compose-card[b-tu95afbzkk],
.notif-activity-card[b-tu95afbzkk],
.notif-stat-card[b-tu95afbzkk],
.notif-section-card[b-tu95afbzkk] {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.notif-compose-card[b-tu95afbzkk] {
    position: sticky;
    top: 88px;
}

.notif-section-card[b-tu95afbzkk] {
    background: rgba(255, 255, 255, 0.02);
}

.notif-stat-card[b-tu95afbzkk] {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.notif-activity-table :deep(.mud-table-container)[b-tu95afbzkk] {
    border-radius: 12px;
}

.notif-activity-table :deep(.mud-table-cell)[b-tu95afbzkk] {
    vertical-align: top;
}

@media (max-width: 1919.98px) {
    .notif-compose-card[b-tu95afbzkk] {
        position: static;
        top: auto;
    }
}

@media (max-width: 959.98px) {
    .notif-compose-card[b-tu95afbzkk],
    .notif-activity-card[b-tu95afbzkk],
    .notif-stat-card[b-tu95afbzkk],
    .notif-section-card[b-tu95afbzkk] {
        border-radius: 14px;
    }
}
/* /Pages/WorkOrders/Components/MergeWorkOrdersDialog.razor.rz.scp.css */
/* ── Primary work-order card (the merge target) ────────────── */
/* A prominent left border in Success green signals "this is the
   destination" at a glance.                                    */
.merge-primary-card[b-y9duwfp5up] {
    border-left: 4px solid var(--mud-palette-success) !important;
}

/* Slightly tinted header strip inside the primary card */
.merge-primary-header[b-y9duwfp5up] {
    background-color: rgba(var(--mud-palette-success-rgb), 0.08);
    border-bottom: 1px solid var(--mud-palette-lines-default);
    padding: 10px 16px;
}

/* ── Secondary candidate-order header bar ─────────────────── */
.merge-order-header[b-y9duwfp5up] {
    background-color: var(--mud-palette-background-gray);
    border-bottom: 1px solid var(--mud-palette-lines-default);
}

/* ── Confirmation "merging into" target block ─────────────── */
.merge-confirm-target[b-y9duwfp5up] {
    border-left: 4px solid var(--mud-palette-success) !important;
}

/* Tinted area inside the confirmation target card */
.merge-confirm-target-header[b-y9duwfp5up] {
    background-color: rgba(var(--mud-palette-success-rgb), 0.08);
    border-bottom: 1px solid var(--mud-palette-lines-default);
    padding: 10px 16px;
    border-radius: 0; /* let MudPaper handle outer corners */
}

/* ── Secondary candidate-order card ──────────────────────── */
/* overflow:hidden clips the inner MudTable at the paper's rounded corners */
.merge-candidate-card[b-y9duwfp5up] {
    overflow: hidden;
}

/* ── Primary item radio option text stack ─────────────────── */
/* min-width:0 prevents text overflow from stretching the flex container */
.merge-item-text[b-y9duwfp5up] {
    min-width: 0;
}

/* ── Uppercase label utility ──────────────────────────────── */
.merge-label[b-y9duwfp5up] {
    text-transform: uppercase;
    letter-spacing: 0.065em;
}
/* /Pages/WorkOrders/WorkOrderPage.razor.rz.scp.css */
.wo-filter-panels[b-9h4ykmvvfz] {
    margin-top: -0.5rem;
}

.wo-filter-panel[b-9h4ykmvvfz] {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    overflow: hidden;
}

.wo-filter-summary[b-9h4ykmvvfz] {
    width: 100%;
    gap: 0.75rem;
}

.wo-filter-chip-row[b-9h4ykmvvfz] {
    justify-content: flex-end;
}

.wo-filter-panel-body[b-9h4ykmvvfz] {
    margin: 0 1rem 1rem;
    background: rgba(255, 255, 255, 0.02);
}

.wo-active-filter-row[b-9h4ykmvvfz] {
    padding-bottom: 0.25rem;
}

[b-9h4ykmvvfz] tr.wo-order-row > td {
    background-color: rgba(255, 255, 255, 0.012);
    border-bottom: 1px solid rgba(123, 154, 184, 0.14);
    vertical-align: top;
}

[b-9h4ykmvvfz] tr.wo-order-row:hover > td {
    background-color: rgba(255, 255, 255, 0.024);
}

.wo-order-child-row > td[b-9h4ykmvvfz] {
    border-bottom: 0 !important;
}

.wo-items-cell[b-9h4ykmvvfz] {
    padding-top: 10px !important;
    padding-bottom: 8px !important;
    background: rgba(0, 0, 0, 0.08);
}

/* ── Nested work-item panel ───────────────────────────────── */
/* MudPaper Outlined provides the border + border-radius;
   overflow:hidden clips the inner table at those corners.
   Explicit surface background so the card always floats
   visually above any stripe colour.                           */
.wo-items-panel[b-9h4ykmvvfz] {
    margin: 0 16px 16px;
    overflow: hidden;
    background-color: #23242b !important;
    border-top-color: transparent !important;
    border-color: rgba(123, 154, 184, 0.18) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

[b-9h4ykmvvfz] .wo-order-items-table thead th {
    background-color: rgba(0, 0, 0, 0.12);
}

[b-9h4ykmvvfz] .wo-order-items-table tbody td {
    border-bottom-color: rgba(123, 154, 184, 0.12);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
    .wo-filter-summary[b-9h4ykmvvfz] {
        align-items: flex-start;
    }

    .wo-filter-chip-row[b-9h4ykmvvfz] {
        justify-content: flex-start;
    }

    .wo-filter-panel-body[b-9h4ykmvvfz] {
        margin: 0 0.75rem 0.75rem;
    }

    .wo-items-panel[b-9h4ykmvvfz] {
        margin: 0 8px 12px;
    }
}
/* /Shared/Components/ChangelogDialog.razor.rz.scp.css */
.cl-scroll[b-17qupkvxsw] {
    max-height: 520px;
    overflow-y: auto;
    padding-right: 4px;
}


/* ── Release row header ── */
.cl-release-header[b-17qupkvxsw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 20px;
}

/* ── Entries list ── */
.cl-entries[b-17qupkvxsw] {
    margin-top: 10px;
    margin-bottom: 6px;
}
/* /Shared/Components/EntityLink.razor.rz.scp.css */
.entity-link[b-ik2xc5l0q5] {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-color: var(--mud-palette-text-secondary);
    text-underline-offset: 3px;
    cursor: pointer;
    transition: color 0.15s ease, text-decoration-color 0.15s ease, text-decoration-style 0.15s ease;
}

.entity-link:hover[b-ik2xc5l0q5] {
    color: var(--mud-palette-primary);
    text-decoration-style: solid;
    text-decoration-color: var(--mud-palette-primary);
}

.entity-link:visited[b-ik2xc5l0q5] {
    color: inherit;
}
/* /Shared/Components/FeedbackDialog.razor.rz.scp.css */
.feedback-dialog-textarea[b-wyacibbtg9]  textarea,
.feedback-dialog-textarea .mud-input-slot textarea[b-wyacibbtg9] {
    line-height: 1.6;
    padding-top: 14px;
    min-height: 144px;
    resize: vertical;
}

@media (max-width: 599.98px) {
    .feedback-dialog-actions[b-wyacibbtg9] {
        flex-direction: column-reverse;
        align-items: stretch;
    }
}
/* /Shared/Components/GlobalSearchDialog.razor.rz.scp.css */
/* ─────────────────────────────────────────────────────────────────────────────
   CSS isolation note
   ──────────────────
   MudBlazor component roots receive MudBlazor's own scope attribute, NOT ours,
   so a scoped selector like .gs-footer[b-OurScope] never matches a <MudStack>.
   Fix: the outer <MudStack class="gs-shell"> in the Razor file is the scope
   anchor. Everything below uses  .gs-shell :deep(...)  so the scope attribute
   lands on that MudStack element (ours) and :deep() pierces into MudBlazor.
───────────────────────────────────────────────────────────────────────────── */

/* ── Dialog chrome — strip default content padding for flush command-palette look ── */
:deep(.mud-dialog-content)[b-rny4mmdn9o] {
    padding: 0 !important;
    overflow: visible;
}

/* ── Shell (outer MudStack — CSS scope anchor) ── */
.gs-shell[b-rny4mmdn9o] {
    display: flex;
    flex-direction: column;
}

/* ── Input ── */
.gs-shell :deep(.gs-text-field)[b-rny4mmdn9o] {
    margin-bottom: 0 !important;
}

.gs-shell :deep(.gs-text-field .mud-input-control)[b-rny4mmdn9o] {
    margin-bottom: 0 !important;
}

.gs-shell :deep(.gs-text-field .mud-input-root)[b-rny4mmdn9o] {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    font-size: 1rem !important;
}

.gs-shell :deep(.gs-text-field .mud-input-adornment-start)[b-rny4mmdn9o] {
    color: var(--mud-palette-text-disabled);
}

/* ── Progress bar ── */
.gs-shell :deep(.gs-progress)[b-rny4mmdn9o] {
    height: 3px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    opacity: 0.85;
}

/* ── Results list ── */
.gs-shell :deep(.gs-body)[b-rny4mmdn9o] {
    min-height: 96px;
    max-height: 400px;
    overflow-y: auto;
    padding: 6px 0 8px !important;
    transition: opacity 150ms ease;
}

.gs-shell :deep(.gs-body--stale)[b-rny4mmdn9o] {
    opacity: 0.5;
    pointer-events: none;
}

/* ── Group headers ── */
.gs-shell :deep(.gs-group-header)[b-rny4mmdn9o] {
    gap: 0 !important;
    min-height: unset !important;
    padding-top: 10px !important;
    padding-bottom: 3px !important;
}

.gs-shell :deep(.gs-group-label)[b-rny4mmdn9o] {
    flex: 1;
    color: var(--mud-palette-text-disabled) !important;
    font-size: 0.6875rem !important;
    letter-spacing: 0.08em !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

.gs-shell :deep(.gs-clear-btn)[b-rny4mmdn9o] {
    width: 28px !important;
    height: 28px !important;
    padding: 0 !important;
}

/* ── Result rows (MudListItem) ── */
.gs-shell :deep(.gs-result)[b-rny4mmdn9o] {
    border-radius: 8px !important;
    margin: 1px 10px !important;
    padding: 8px 12px !important;
    cursor: pointer;
    transition: background 80ms ease;
}

.gs-shell :deep(.gs-result .mud-list-item-text)[b-rny4mmdn9o] {
    padding: 0 !important;
    margin: 0 !important;
}

.gs-shell :deep(.gs-result--active)[b-rny4mmdn9o] {
    background: color-mix(in srgb, var(--mud-palette-primary) 12%, transparent) !important;
}

.gs-shell :deep(.gs-skeleton-row)[b-rny4mmdn9o] {
    cursor: default !important;
    opacity: 0.5;
}

/* ── Result icon ── */
.gs-shell :deep(.gs-result-icon)[b-rny4mmdn9o] {
    flex-shrink: 0;
    opacity: 0.85;
}

/* ── Quick Action icon — filled amber chip to contrast against blue page icons ── */
.gs-shell :deep(.gs-result--action .gs-result-icon)[b-rny4mmdn9o] {
    background: color-mix(in srgb, var(--mud-palette-secondary) 16%, transparent);
    border-radius: 6px;
    padding: 4px;
    opacity: 1;
    box-sizing: content-box;
    color: var(--mud-palette-secondary) !important;
}

/* ── Result title ── */
.gs-shell :deep(.gs-result-title)[b-rny4mmdn9o] {
    font-weight: 500 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.4 !important;
}

/* ── Result subtitle / matched snippet ── */
.gs-shell :deep(.gs-result-line)[b-rny4mmdn9o] {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: block !important;
    line-height: 1.4 !important;
}

/* ── Arrow icon — fade in on hover / active ── */
.gs-shell :deep(.gs-result-arrow)[b-rny4mmdn9o] {
    flex-shrink: 0;
    color: var(--mud-palette-text-disabled);
    opacity: 0;
    transition: opacity 100ms ease;
}

.gs-shell :deep(.gs-result:hover .gs-result-arrow)[b-rny4mmdn9o],
.gs-shell :deep(.gs-result--active .gs-result-arrow)[b-rny4mmdn9o] {
    opacity: 1;
}

/* ── Recent remove button — visible on hover only ── */
.gs-shell :deep(.gs-remove-btn)[b-rny4mmdn9o] {
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 100ms ease;
    width: 28px !important;
    height: 28px !important;
    padding: 0 !important;
}

.gs-shell :deep(.gs-result:hover .gs-remove-btn)[b-rny4mmdn9o],
.gs-shell :deep(.gs-result--active .gs-remove-btn)[b-rny4mmdn9o] {
    opacity: 1;
}

/* ── MudHighlighter match ── */
.gs-shell :deep(mark)[b-rny4mmdn9o] {
    background: transparent;
    color: var(--mud-palette-primary);
    font-weight: 700;
}

/* ── Empty / error states ── */
.gs-shell :deep(.gs-state)[b-rny4mmdn9o] {
    gap: 8px !important;
}

/* ── Footer ── */
.gs-shell :deep(.gs-footer)[b-rny4mmdn9o] {
    gap: 20px !important;
    border-top: 1px solid var(--mud-palette-divider);
}

/* ── Keyboard key chip (MudPaper Outlined) ── */
.gs-shell :deep(.gs-key)[b-rny4mmdn9o] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 4px 6px !important;
    min-width: 26px !important;
    height: 24px !important;
    border-radius: 4px !important;
    background: color-mix(in srgb, var(--mud-palette-text-primary) 5%, transparent) !important;
    color: var(--mud-palette-text-secondary) !important;
}

/* Text variant (Esc key) */
.gs-shell :deep(.gs-key--text)[b-rny4mmdn9o] {
    padding: 4px 8px !important;
}

.gs-shell :deep(.gs-key-label)[b-rny4mmdn9o] {
    font-size: 0.6875rem !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    color: var(--mud-palette-text-secondary) !important;
    letter-spacing: 0.01em !important;
}
/* /Shared/Components/RolePreviewPanel.razor.rz.scp.css */
/* ── FAB trigger (bottom-right, stacked above the feedback button) ──────── */
/* Feedback sits at bottom: 24px, height ~56px. Add 12px gap → 92px.        */
.rp-fab-wrapper[b-o5xlicw9g4] {
    position: fixed;
    bottom: 92px;
    right: 20px;
    z-index: 1500;
}

@media (max-width: 599.98px) {
    /* Stack above checklist (16px base) + ~56px height + 8px gap = 80px */
    .rp-fab-wrapper[b-o5xlicw9g4] {
        right: 12px;
        bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    }

    .rp-panel[b-o5xlicw9g4] {
        bottom: calc(144px + env(safe-area-inset-bottom, 0px));
        right: 8px;
        left: 8px;
        width: auto;
        max-height: 60vh;
    }
}

.rp-fab[b-o5xlicw9g4] {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
    transition: transform 0.15s ease;
}

.rp-fab:hover[b-o5xlicw9g4] {
    transform: scale(1.08);
}

.rp-fab--active[b-o5xlicw9g4] {
    animation: rp-pulse-b-o5xlicw9g4 2s infinite;
}

@keyframes rp-pulse-b-o5xlicw9g4 {
    0%, 100% { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 0 0 rgba(230, 81, 0, 0.5); }
    50%       { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(230, 81, 0, 0); }
}

/* ── Floating panel ────────────────────────────────────────────────────── */
.rp-panel[b-o5xlicw9g4] {
    position: fixed;
    bottom: 92px;
    right: 20px;
    z-index: 1500;
    width: 300px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: #1a1b22;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.87);
    font-size: 0.875rem;
}

/* ── Panel header ─────────────────────────────────────────────────────── */
.rp-panel-header[b-o5xlicw9g4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 8px;
}

.rp-panel-title[b-o5xlicw9g4] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.875rem;
}

.rp-staff-badge[b-o5xlicw9g4] {
    font-size: 0.68rem !important;
    height: 20px !important;
    padding: 0 6px !important;
}

/* ── Sections ─────────────────────────────────────────────────────────── */
.rp-panel-section[b-o5xlicw9g4] {
    padding: 10px 16px;
}

.rp-section-header-row[b-o5xlicw9g4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.rp-section-label[b-o5xlicw9g4] {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.rp-section-actions[b-o5xlicw9g4] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
}

.rp-section-sep[b-o5xlicw9g4] {
    color: rgba(255, 255, 255, 0.3);
}

/* ── Override toggle row ──────────────────────────────────────────────── */
.rp-toggle-row[b-o5xlicw9g4] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rp-toggle-label[b-o5xlicw9g4] {
    font-weight: 500;
}

.rp-hint[b-o5xlicw9g4] {
    margin: 4px 0 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
}

/* ── Loading state ────────────────────────────────────────────────────── */
.rp-loading[b-o5xlicw9g4] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.82rem;
}

/* ── Role list ────────────────────────────────────────────────────────── */
.rp-role-list[b-o5xlicw9g4] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rp-role-item[b-o5xlicw9g4] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: background 0.12s ease, border-color 0.12s ease;
    font-size: 0.84rem;
}

.rp-role-item:hover[b-o5xlicw9g4] {
    background: rgba(255, 255, 255, 0.07);
}

.rp-role-item--active[b-o5xlicw9g4] {
    background: rgba(30, 95, 221, 0.2);
    border-color: rgba(30, 95, 221, 0.5);
}

.rp-role-icon[b-o5xlicw9g4] {
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.rp-role-count[b-o5xlicw9g4] {
    margin-left: auto;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ── Checkboxes ──────────────────────────────────────────────────────── */
.rp-checkbox-row[b-o5xlicw9g4] {
    margin-bottom: 2px;
}

.rp-checkbox-row .mud-checkbox-label[b-o5xlicw9g4] {
    font-size: 0.82rem !important;
}
/* /Shared/MainLayout.razor.rz.scp.css */
.tg-search-pill[b-yx6uijlo8p] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px 4px 8px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.85);
    cursor: pointer;
    font-family: inherit;
    transition: border-color 120ms, background 120ms, color 120ms;
    white-space: nowrap;
    line-height: 1;
}

.tg-search-pill:hover[b-yx6uijlo8p] {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.18);
    color: #ffffff;
}

.tg-search-pill__icon[b-yx6uijlo8p] {
    font-size: 16px !important;
    width: 16px !important;
    height: 16px !important;
    opacity: 0.85;
}

.tg-search-pill__label[b-yx6uijlo8p] {
    font-size: 13px;
}

.tg-search-pill__kbd[b-yx6uijlo8p] {
    font-size: 11px;
    font-family: inherit;
    padding: 1px 5px;
    border: 1px solid rgba(255,255,255,0.45);
    border-radius: 4px;
    opacity: 0.7;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Mobile: collapse search pill to icon-only button */
@media (max-width: 599.98px) {
    .tg-search-pill[b-yx6uijlo8p] {
        padding: 6px 8px;
    }

    .tg-search-pill__label[b-yx6uijlo8p],
    .tg-search-pill__kbd[b-yx6uijlo8p] {
        display: none;
    }
}
