/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-krrg75q3mi] {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-primary);
    min-height: 100vh;
    transition: background-color 0.2s ease;
}

main[b-krrg75q3mi] {
    flex: 1;
    min-width: 0;
}

/* ── Sidebar ── */
.sidebar[b-krrg75q3mi] {
    background: var(--gradient-sidebar);
    border-right: 1px solid var(--border-subtle);
    width: 0;
    min-width: 0;
    flex-shrink: 0;
    overflow: hidden;
    transition: width 0.25s ease;
}

.page.sidebar-open .sidebar[b-krrg75q3mi] {
    width: 250px;
    overflow-y: auto;
}

/* ── Top bar ── */
.top-row[b-krrg75q3mi] {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s ease;
}

    .top-row[b-krrg75q3mi]  a, .top-row[b-krrg75q3mi]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
        color: var(--text-secondary);
        transition: color var(--transition-fast);
    }

    .top-row[b-krrg75q3mi]  a:hover, .top-row[b-krrg75q3mi]  .btn-link:hover {
        color: var(--text-primary);
        text-decoration: none;
    }

    .top-row[b-krrg75q3mi]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* ── Hamburger / toggle button — always visible ── */
.menu-toggle-btn[b-krrg75q3mi] {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-toggle-btn:hover[b-krrg75q3mi] {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.sidebar-backdrop[b-krrg75q3mi] {
    display: none;
}

/* ── Desktop (>=641px) ── */
@media (min-width: 641px) {
    .page[b-krrg75q3mi] {
        flex-direction: row;
    }

    .sidebar[b-krrg75q3mi] {
        height: 100vh;
        position: sticky;
        top: 0;
    }

    /* Hide border when sidebar is collapsed */
    .sidebar[b-krrg75q3mi] {
        border-right: none;
    }

    .page.sidebar-open .sidebar[b-krrg75q3mi] {
        border-right: 1px solid var(--border-subtle);
    }

    .top-row[b-krrg75q3mi] {
        position: sticky;
        top: 0;
        z-index: var(--z-sticky, 10);
    }

    .top-row.auth[b-krrg75q3mi]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-krrg75q3mi], article[b-krrg75q3mi] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* ── Mobile (<641px) ── */
@media (max-width: 640.98px) {
    .top-row[b-krrg75q3mi] {
        justify-content: flex-start;
        gap: 0.75rem;
    }

    .top-row[b-krrg75q3mi]  a, .top-row[b-krrg75q3mi]  .btn-link {
        margin-left: 0;
    }

    .sidebar[b-krrg75q3mi] {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 0;
        min-width: 0;
        z-index: var(--z-sidebar, 1060);
        overflow: hidden;
        transition: width 0.25s ease;
    }

    .page.mobile-sidebar-open .sidebar[b-krrg75q3mi] {
        width: 250px;
        overflow-y: auto;
    }

    .sidebar-backdrop[b-krrg75q3mi] {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: var(--z-modal, 1050);
    }

    .platform-stats[b-krrg75q3mi] {
        display: none !important;
    }
}

/* ── Error UI ── */
#blazor-error-ui[b-krrg75q3mi] {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-top: 1px solid var(--border-subtle);
    bottom: 0;
    box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.4);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: var(--z-error-ui, 1000);
}

    #blazor-error-ui .dismiss[b-krrg75q3mi] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */

.top-row[b-cbvbvfao4s] {
    min-height: 3.5rem;
    background-color: transparent;
    border-bottom: 1px solid var(--border-subtle);
}

.nav-close-btn[b-cbvbvfao4s] {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: var(--sidebar-text, rgba(255, 255, 255, 0.6));
    padding: 4px;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-close-btn:hover[b-cbvbvfao4s] {
    color: var(--sidebar-text-hover, rgba(255, 255, 255, 0.9));
    background: var(--sidebar-hover-bg, rgba(255, 255, 255, 0.1));
}

.navbar-brand[b-cbvbvfao4s] {
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bi[b-cbvbvfao4s] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

/* Dashboard — house */
.bi-house-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

/* Scan — play-circle */
.bi-scan-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16'/%3E%3Cpath d='M6.271 5.055a.5.5 0 0 1 .52.038l3.5 2.5a.5.5 0 0 1 0 .814l-3.5 2.5A.5.5 0 0 1 6 10.5v-5a.5.5 0 0 1 .271-.445'/%3E%3C/svg%3E");
}

/* Results — clipboard-check */
.bi-results-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M10.854 7.146a.5.5 0 0 1 0 .708l-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 1 1 .708-.708L7.5 9.793l2.646-2.647a.5.5 0 0 1 .708 0'/%3E%3Cpath d='M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1z'/%3E%3Cpath d='M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0z'/%3E%3C/svg%3E");
}

/* Scan History — clock-history */
.bi-history-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8.515 1.019A7 7 0 0 0 8 1V0a8 8 0 0 1 .589.022zm2.004.45a7 7 0 0 0-.985-.299l.219-.976q.576.129 1.126.342zm1.37.71a7 7 0 0 0-.439-.27l.493-.87a8 8 0 0 1 .979.654l-.615.789a7 7 0 0 0-.418-.302zm1.834 1.79a7 7 0 0 0-.653-.796l.724-.69q.406.429.747.91zm.744 1.352a7 7 0 0 0-.214-.468l.893-.45a8 8 0 0 1 .45 1.088l-.95.313a7 7 0 0 0-.179-.483m.53 2.507a7 7 0 0 0-.1-1.025l.985-.17q.1.58.116 1.17zm-.131 1.538q.05-.254.081-.51l.993.123a8 8 0 0 1-.23 1.155l-.964-.267q.069-.247.12-.501m-.952 2.379q.276-.436.486-.908l.914.405q-.253.57-.583 1.098zm-1.668 1.8q.346-.366.642-.775l.8.6q-.36.48-.768.898zm-2.336 1.37q.424-.244.804-.545l.624.78q-.46.371-.97.67zm-2.816.79a7 7 0 0 0 1.03-.215l.29.96a8 8 0 0 1-1.2.25zM8 13A5 5 0 1 0 3.1 8H1l2.5 3L6 8H4.1a3.9 3.9 0 1 1 .627 2.13l-.77.77A5 5 0 0 0 8 13m0-8.5a.5.5 0 0 1 .5.5v2.5H10a.5.5 0 0 1 0 1H8a.5.5 0 0 1-.5-.5V5a.5.5 0 0 1 .5-.5'/%3E%3C/svg%3E");
}

/* Subscriptions — cloud */
.bi-cloud-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4.406 3.342A5.53 5.53 0 0 1 8 2c2.69 0 4.923 2 5.166 4.579C14.758 6.804 16 8.137 16 9.773 16 11.569 14.502 13 12.687 13H3.781C1.708 13 0 11.366 0 9.318c0-1.763 1.266-3.223 2.942-3.593.143-.863.698-1.723 1.464-2.383m.653.757c-.757.653-1.153 1.44-1.153 2.056v.448l-.445.049C2.064 6.805 1 7.952 1 9.318 1 10.785 2.23 12 3.781 12h8.906C13.98 12 15 10.988 15 9.773c0-1.216-1.02-2.228-2.313-2.228h-.5v-.5C12.188 4.825 10.328 3 8 3a4.53 4.53 0 0 0-2.941 1.1'/%3E%3C/svg%3E");
}

/* Policies — shield-check */
.bi-shield-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M5.338 1.59a61 61 0 0 0-2.837.856.48.48 0 0 0-.328.39c-.554 4.157.726 7.19 2.253 9.188a10.7 10.7 0 0 0 2.287 2.233c.346.244.652.42.893.533q.18.085.293.118a1 1 0 0 0 .101.025 1 1 0 0 0 .1-.025q.114-.034.294-.118c.24-.113.547-.29.893-.533a10.7 10.7 0 0 0 2.287-2.233c1.527-1.997 2.807-5.031 2.253-9.188a.48.48 0 0 0-.328-.39c-.651-.213-1.75-.56-2.837-.855C9.552 1.29 8.531 1.067 8 1.067c-.53 0-1.552.223-2.662.524zM5.072.56C6.157.265 7.31 0 8 0s1.843.265 2.928.56c1.11.3 2.229.655 2.887.87a1.54 1.54 0 0 1 1.044 1.262c.596 4.477-.787 7.795-2.465 9.99a11.8 11.8 0 0 1-2.517 2.453 7 7 0 0 1-1.048.625 2.7 2.7 0 0 1-.51.209l-.04.01a.11.11 0 0 1-.027.006l-.006.002h-.003l-.002-.001-.002-.001-.01-.003a2 2 0 0 1-.149-.05 7 7 0 0 1-.404-.168 11.8 11.8 0 0 1-2.517-2.453C2.232 10.228.848 6.91 1.445 2.433A1.54 1.54 0 0 1 2.489 1.17c.658-.214 1.777-.564 2.887-.864zm5.782 5.294a.5.5 0 0 0-.708-.708L7.5 7.793 6.354 6.646a.5.5 0 1 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0z'/%3E%3C/svg%3E");
}

/* External DB — database */
.bi-db-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M4.318 2.687C5.234 2.271 6.536 2 8 2s2.766.27 3.682.687C12.644 3.125 13 3.627 13 4c0 .374-.356.875-1.318 1.313C10.766 5.729 9.464 6 8 6s-2.766-.27-3.682-.687C3.356 4.875 3 4.373 3 4c0-.374.356-.875 1.318-1.313M13 5.698V7c0 .374-.356.875-1.318 1.313C10.766 8.729 9.464 9 8 9s-2.766-.27-3.682-.687C3.356 7.875 3 7.373 3 7V5.698c.271.202.58.378.904.525C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777A5 5 0 0 0 13 5.698M14 4c0-1.007-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1s-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4v9c0 1.007.875 1.755 1.904 2.223C4.978 15.71 6.427 16 8 16s3.022-.289 4.096-.777C13.125 14.755 14 14.007 14 13zm-1 4.698V10c0 .374-.356.875-1.318 1.313C10.766 11.729 9.464 12 8 12s-2.766-.27-3.682-.687C3.356 10.875 3 10.373 3 10V8.698c.271.202.58.378.904.525C4.978 9.71 6.427 10 8 10s3.022-.289 4.096-.777A5 5 0 0 0 13 8.698m0 3V13c0 .374-.356.875-1.318 1.313C10.766 14.729 9.464 15 8 15s-2.766-.27-3.682-.687C3.356 13.875 3 13.373 3 13v-1.302c.271.202.58.378.904.525C4.978 12.71 6.427 13 8 13s3.022-.289 4.096-.777c.324-.147.633-.323.904-.525'/%3E%3C/svg%3E");
}

/* Schedules — clock */
.bi-clock-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 3.5a.5.5 0 0 0-1 0V8a.5.5 0 0 0 .252.434l3.5 2a.5.5 0 0 0 .496-.868L8 7.71z'/%3E%3Cpath d='M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m7-8A7 7 0 1 1 1 8a7 7 0 0 1 14 0'/%3E%3C/svg%3E");
}

/* API Keys — key */
/* Billing — credit-card */
.bi-billing-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2zm2-1a1 1 0 0 0-1 1v1h14V4a1 1 0 0 0-1-1zm13 4H1v5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1zm-3 3a1 1 0 0 1 1-1h1a1 1 0 0 1 0 2h-1a1 1 0 0 1-1-1'/%3E%3C/svg%3E");
}

.bi-key-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M0 8a4 4 0 0 1 7.465-2H14a.5.5 0 0 1 .354.146l1.5 1.5a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0L13 9.207l-.646.647a.5.5 0 0 1-.708 0L11 9.207l-.646.647a.5.5 0 0 1-.708 0L9 9.207l-.646.647A.5.5 0 0 1 8 10h-.535A4 4 0 0 1 0 8m4-3a3 3 0 1 0 2.712 4.285A.5.5 0 0 1 7.163 9h.63l.853-.854a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708 0l.646.647.646-.647a.5.5 0 0 1 .708 0l.646.647.793-.793-1-1H7.163a.5.5 0 0 1-.45-.285A3 3 0 0 0 4 5m1.5 3a1.5 1.5 0 1 0-3 0 1.5 1.5 0 0 0 3 0M3 8a1 1 0 1 1 2 0 1 1 0 0 1-2 0'/%3E%3C/svg%3E");
}

/* Audit Log — journal-text */
.bi-journal-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M5 10.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 0 1h-2a.5.5 0 0 1-.5-.5m0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5m0-2a.5.5 0 0 1 .5-.5h5a.5.5 0 0 1 0 1h-5a.5.5 0 0 1-.5-.5'/%3E%3Cpath d='M3 0h10a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-1h1v1a1 1 0 0 0 1 1h10a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1H3a1 1 0 0 0-1 1v1H1V2a2 2 0 0 1 2-2'/%3E%3Cpath d='M1 5v-.5a.5.5 0 0 1 1 0V5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0V8h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1zm0 3v-.5a.5.5 0 0 1 1 0v.5h.5a.5.5 0 0 1 0 1h-2a.5.5 0 0 1 0-1z'/%3E%3C/svg%3E");
}

/* Audit Readiness — clipboard-check */
.bi-check-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M10.854 7.854a.5.5 0 0 0-.708-.708L7.5 9.793 6.354 8.646a.5.5 0 1 0-.708.708l1.5 1.5a.5.5 0 0 0 .708 0z'/%3E%3Cpath d='M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1z'/%3E%3Cpath d='M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0z'/%3E%3C/svg%3E");
}

/* Resources — diagram-3 (tree graph) */
.bi-resources-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M6 3.5A1.5 1.5 0 0 1 7.5 2h1A1.5 1.5 0 0 1 10 3.5v1A1.5 1.5 0 0 1 8.5 6v1H14a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-1 0V8h-5v.5a.5.5 0 0 1-1 0V8h-5v.5a.5.5 0 0 1-1 0v-1A.5.5 0 0 1 2 7h5.5V6A1.5 1.5 0 0 1 6 4.5zM8.5 5a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5zM0 11.5A1.5 1.5 0 0 1 1.5 10h1A1.5 1.5 0 0 1 4 11.5v1A1.5 1.5 0 0 1 2.5 14h-1A1.5 1.5 0 0 1 0 12.5zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm4.5.5A1.5 1.5 0 0 1 7.5 10h1a1.5 1.5 0 0 1 1.5 1.5v1A1.5 1.5 0 0 1 8.5 14h-1A1.5 1.5 0 0 1 6 12.5zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5zm4.5.5a1.5 1.5 0 0 1 1.5-1.5h1a1.5 1.5 0 0 1 1.5 1.5v1a1.5 1.5 0 0 1-1.5 1.5h-1a1.5 1.5 0 0 1-1.5-1.5zm1.5-.5a.5.5 0 0 0-.5.5v1a.5.5 0 0 0 .5.5h1a.5.5 0 0 0 .5-.5v-1a.5.5 0 0 0-.5-.5z'/%3E%3C/svg%3E");
}

/* Evaluate — lightning (bolt) */
.bi-evaluate-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M5.52.359A.5.5 0 0 1 6 0h4a.5.5 0 0 1 .474.658L8.694 6H12.5a.5.5 0 0 1 .395.807l-7 9a.5.5 0 0 1-.873-.454L6.823 9.5H3.5a.5.5 0 0 1-.48-.641zM6.374 1 4.168 8.5H7.5a.5.5 0 0 1 .478.647L6.78 13.04 11.478 7H8a.5.5 0 0 1-.474-.658L9.306 1z'/%3E%3C/svg%3E");
}

/* Evaluations — list-check */
.bi-evaluations-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M5 11.5a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5m0-4a.5.5 0 0 1 .5-.5h9a.5.5 0 0 1 0 1h-9a.5.5 0 0 1-.5-.5M3.854 2.146a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0l-.5-.5a.5.5 0 1 1 .708-.708L2 3.293l1.146-1.147a.5.5 0 0 1 .708 0m0 4a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0l-.5-.5a.5.5 0 1 1 .708-.708L2 7.293l1.146-1.147a.5.5 0 0 1 .708 0m0 4a.5.5 0 0 1 0 .708l-1.5 1.5a.5.5 0 0 1-.708 0l-.5-.5a.5.5 0 0 1 .708-.708l.146.147 1.146-1.147a.5.5 0 0 1 .708 0'/%3E%3C/svg%3E");
}

/* Heatmap — grid-3x3 */
.bi-heatmap-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M0 1.5A1.5 1.5 0 0 1 1.5 0h13A1.5 1.5 0 0 1 16 1.5v13a1.5 1.5 0 0 1-1.5 1.5h-13A1.5 1.5 0 0 1 0 14.5zM1.5 1a.5.5 0 0 0-.5.5V5h4V1zM5 6H1v4h4zm1 4h4V6H6zm-1 1H1v3.5a.5.5 0 0 0 .5.5H5zm1 0v4h4v-4zm5 0v4h3.5a.5.5 0 0 0 .5-.5V11zm0-1h4V6h-4zm0-5h4V1.5a.5.5 0 0 0-.5-.5H11zm-1 0V1H6v4z'/%3E%3C/svg%3E");
}

/* Remediation — wrench */
.bi-remediation-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M.102 2.223A3.004 3.004 0 0 0 3.78 5.897l6.341 6.252A3.003 3.003 0 0 0 13 16a3 3 0 1 0-.851-5.878L5.897 3.781A3.004 3.004 0 0 0 2.223.1l2.141 2.142L4 4l-1.757.364zm13.37 9.019.528.026.287.445.445.287.026.529L15 13l-.242.471-.026.529-.445.287-.287.445-.529.026L13 15l-.471-.242-.529-.026-.287-.445-.445-.287-.026-.529L11 13l.242-.471.026-.529.445-.287.287-.445.529-.026L13 11z'/%3E%3C/svg%3E");
}

/* Diagnostics — send (paper plane) */
.bi-diag-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M15.854.146a.5.5 0 0 1 .11.54l-5.819 14.547a.75.75 0 0 1-1.329.124l-3.178-4.995L.643 7.184a.75.75 0 0 1 .124-1.33L15.314.037a.5.5 0 0 1 .54.11ZM6.636 10.07l2.761 4.338L14.13 2.576zm6.787-8.201L1.591 6.602l4.339 2.76z'/%3E%3C/svg%3E");
}

/* Team — people */
.bi-people-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M15 14s1 0 1-1-1-4-5-4-5 3-5 4 1 1 1 1zm-7.978-1L7 12.996c.001-.264.167-1.03.76-1.72C8.312 10.629 9.282 10 11 10c1.717 0 2.687.63 3.24 1.276.593.69.758 1.457.76 1.72l-.008.002-.014.002zM11 7a2 2 0 1 0 0-4 2 2 0 0 0 0 4m3-2a3 3 0 1 1-6 0 3 3 0 0 1 6 0M6.936 9.28a6 6 0 0 0-1.23-.247A7 7 0 0 0 5 9c-4 0-5 3-5 4 0 .667.333 1 1 1h4.216A2.24 2.24 0 0 1 5 13c0-1.01.377-2.042 1.09-2.904.243-.294.526-.569.846-.816M4.92 10A5.5 5.5 0 0 0 4 13H1c0-.26.164-1.03.76-1.724.545-.636 1.492-1.256 3.16-1.275ZM1.5 5.5a3 3 0 1 1 6 0 3 3 0 0 1-6 0m3-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4'/%3E%3C/svg%3E");
}

.nav-group-label[b-cbvbvfao4s] {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--sidebar-text-muted, rgba(148, 163, 184, 0.5));
    padding-top: 0.6rem;
    padding-bottom: 0.15rem;
    margin-top: 0.15rem;
    border-top: 1px solid var(--sidebar-border, rgba(148, 163, 184, 0.08));
    white-space: nowrap;
    overflow: hidden;
}

.nav-group-label:first-of-type[b-cbvbvfao4s] {
    border-top: none;
}


.nav-item[b-cbvbvfao4s] {
    font-size: 0.85rem;
    padding-bottom: 0.15rem;
}

    .nav-item:first-of-type[b-cbvbvfao4s] {
        padding-top: 0.5rem;
    }

    .nav-item:last-of-type[b-cbvbvfao4s] {
        padding-bottom: 0.5rem;
    }

    .nav-item[b-cbvbvfao4s]  .nav-link {
        color: var(--sidebar-text);
        background: none;
        border: none;
        border-left: 3px solid transparent;
        border-radius: 0;
        height: 2.4rem;
        display: flex;
        align-items: center;
        line-height: 2.4rem;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        transition: color var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast);
    }

.nav-item[b-cbvbvfao4s]  a.active {
    background-color: var(--sidebar-active-bg);
    color: var(--sidebar-text-active);
    border-left: 3px solid var(--color-info);
    box-shadow: inset 3px 0 12px -4px rgba(59, 130, 246, 0.3);
}

.nav-item[b-cbvbvfao4s]  .nav-link:hover {
    background-color: var(--sidebar-hover-bg);
    color: var(--sidebar-text-hover);
    border-left-color: rgba(148, 163, 184, 0.3);
}

.nav-scrollable[b-cbvbvfao4s] {
    display: block;
    height: calc(100vh - 3.5rem);
    overflow-y: auto;
}

/* Custom scrollbar */
.nav-scrollable[b-cbvbvfao4s]::-webkit-scrollbar {
    width: 4px;
}

.nav-scrollable[b-cbvbvfao4s]::-webkit-scrollbar-track {
    background: transparent;
}

.nav-scrollable[b-cbvbvfao4s]::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.2);
    border-radius: 4px;
}

.nav-scrollable[b-cbvbvfao4s]::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 0.35);
}

/* Snapshot — camera */
.bi-snapshot-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M10.5 8.5a2.5 2.5 0 1 1-5 0 2.5 2.5 0 0 1 5 0z'/%3E%3Cpath d='M2 4a2 2 0 0 0-2 2v6a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2h-1.172a2 2 0 0 1-1.414-.586l-.828-.828A2 2 0 0 0 9.172 2H6.828a2 2 0 0 0-1.414.586l-.828.828A2 2 0 0 1 3.172 4H2zm.5 2a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1zm9 2.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0z'/%3E%3C/svg%3E");
}

/* Linked Accounts — link chain */
.bi-link-nav[b-cbvbvfao4s] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M6.354 5.5H4a3 3 0 0 0 0 6h3a3 3 0 0 0 2.83-4H9c-.086 0-.17.01-.25.031A2 2 0 0 1 7 10H4a2 2 0 1 1 0-4h1.535c.218-.376.495-.714.82-1z'/%3E%3Cpath d='M9 5.5a3 3 0 0 0-2.83 4h1.098A2 2 0 0 1 9 6h3a2 2 0 1 1 0 4h-1.535a4 4 0 0 1-.82 1H12a3 3 0 1 0 0-6z'/%3E%3C/svg%3E");
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-g0as3cnc8l],
.components-reconnect-repeated-attempt-visible[b-g0as3cnc8l],
.components-reconnect-failed-visible[b-g0as3cnc8l],
.components-pause-visible[b-g0as3cnc8l],
.components-resume-failed-visible[b-g0as3cnc8l],
.components-rejoining-animation[b-g0as3cnc8l] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-g0as3cnc8l],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-g0as3cnc8l],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-g0as3cnc8l],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-g0as3cnc8l],
#components-reconnect-modal.components-reconnect-retrying[b-g0as3cnc8l],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-g0as3cnc8l],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-g0as3cnc8l],
#components-reconnect-modal.components-reconnect-failed[b-g0as3cnc8l],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-g0as3cnc8l] {
    display: block;
}


#components-reconnect-modal[b-g0as3cnc8l] {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border-medium);
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-g0as3cnc8l 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-g0as3cnc8l 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-g0as3cnc8l 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-g0as3cnc8l]::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    animation: components-reconnect-modal-fadeInOpacity-b-g0as3cnc8l 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-g0as3cnc8l {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-g0as3cnc8l {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-g0as3cnc8l {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-g0as3cnc8l] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-g0as3cnc8l] {
    margin: 0;
    text-align: center;
    color: var(--text-primary);
}

#components-reconnect-modal button[b-g0as3cnc8l] {
    border: 0;
    background: var(--gradient-accent);
    color: #fff;
    padding: 6px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: opacity 150ms ease;
}

    #components-reconnect-modal button:hover[b-g0as3cnc8l] {
        opacity: 0.9;
    }

    #components-reconnect-modal button:active[b-g0as3cnc8l] {
        opacity: 0.8;
    }

.components-rejoining-animation[b-g0as3cnc8l] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-g0as3cnc8l] {
        position: absolute;
        border: 3px solid var(--color-info);
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-g0as3cnc8l 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-g0as3cnc8l] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-g0as3cnc8l {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Layout/SubscriptionSelector.razor.rz.scp.css */
    .sub-sel[b-b5jgy6z64q] {
        position: relative;
        margin-right: 8px;
    }

    .sub-sel-btn[b-b5jgy6z64q] {
        display: flex;
        align-items: center;
        gap: 6px;
        background: var(--bg-tertiary);
        border: 1px solid var(--border-medium);
        border-radius: 6px;
        padding: 4px 10px;
        color: var(--text-primary);
        font-size: 0.8rem;
        cursor: pointer;
        min-width: 240px;
        max-width: 340px;
        transition: border-color var(--transition-fast);
    }
    .sub-sel-btn:hover[b-b5jgy6z64q] { border-color: var(--color-info); }
    .sub-sel-btn:focus[b-b5jgy6z64q] { border-color: var(--color-info); box-shadow: var(--focus-ring); outline: none; }

    .sub-sel-chevron[b-b5jgy6z64q] {
        margin-left: auto;
        font-size: 0.6rem;
        color: var(--text-muted);
    }

    .sub-sel-name[b-b5jgy6z64q] {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sub-sel-badge[b-b5jgy6z64q] {
        display: inline-block;
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        padding: 1px 5px;
        border-radius: 3px;
        flex-shrink: 0;
        line-height: 1.4;
    }
    .sub-sel-badge.cloud-azure[b-b5jgy6z64q] {
        background: rgba(59, 130, 246, 0.15);
        color: #60a5fa;
    }
    .sub-sel-badge.cloud-aws[b-b5jgy6z64q] {
        background: rgba(245, 158, 11, 0.15);
        color: #fbbf24;
    }

    /* Reuse global badge in selector context */
    .sub-sel .cloud-badge[b-b5jgy6z64q] { font-size: 0.55rem; }

    .sub-sel-dropdown[b-b5jgy6z64q] {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        right: 0;
        min-width: 280px;
        max-height: 360px;
        overflow-y: auto;
        background: var(--bg-secondary);
        border: 1px solid var(--border-medium);
        border-radius: 8px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        z-index: var(--z-sidebar, 1060);
        padding: 4px 0;
    }

    .sub-sel-group[b-b5jgy6z64q] {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 6px 12px 2px;
        font-size: 0.72rem;
        font-weight: 700;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .sub-sel-divider[b-b5jgy6z64q] {
        height: 1px;
        background: var(--border-subtle);
        margin: 4px 8px;
    }

    .sub-sel-item[b-b5jgy6z64q] {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 5px 12px;
        font-size: 0.8rem;
        cursor: pointer;
        color: var(--text-secondary);
        transition: background var(--transition-fast), color var(--transition-fast);
    }
    .sub-sel-item:hover[b-b5jgy6z64q] {
        background: var(--bg-tertiary);
        color: var(--text-primary);
    }
    .sub-sel-item.active[b-b5jgy6z64q] {
        background: rgba(59, 130, 246, 0.1);
        color: var(--text-primary);
        font-weight: 500;
    }
/* /Components/Pages/AuditLog.razor.rz.scp.css */
.al-timeline[b-0lfcxc8nai] {
    position: relative;
    padding-left: 24px;
}

.al-timeline[b-0lfcxc8nai]::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-subtle);
}

.al-date-header[b-0lfcxc8nai] {
    position: relative;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    padding: 12px 0 6px;
    background: var(--bg-primary);
    margin-left: -24px;
    padding-left: 24px;
}

.al-event[b-0lfcxc8nai] {
    position: relative;
    padding: 8px 0 8px 12px;
    border-bottom: 1px solid var(--border-subtle);
}

.al-event:last-child[b-0lfcxc8nai] {
    border-bottom: none;
}

.al-event-dot[b-0lfcxc8nai] {
    position: absolute;
    left: -20px;
    top: 14px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    z-index: 1;
}

.al-event-icon[b-0lfcxc8nai] {
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

.al-event-action[b-0lfcxc8nai] {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
}

.al-event-badge[b-0lfcxc8nai] {
    font-size: 0.58rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 1px 6px;
    border-radius: 3px;
    color: #fff;
}

.al-event-time[b-0lfcxc8nai] {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-left: auto;
}

.al-event-details[b-0lfcxc8nai] {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 2px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.al-event-resource[b-0lfcxc8nai] {
    font-size: 0.7rem;
    color: var(--color-info);
    background: rgba(59, 130, 246, 0.1);
    padding: 0 4px;
    border-radius: 2px;
}

.al-event-user[b-0lfcxc8nai] {
    font-size: 0.68rem;
    color: var(--text-muted);
    margin-top: 1px;
}

.al-event:hover[b-0lfcxc8nai] {
    background: var(--bg-secondary);
}
/* /Components/Pages/Fingerprint.razor.rz.scp.css */
.fp-stat-card[b-i90mkl5qw4] {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 10px 16px;
    min-width: 80px;
    text-align: center;
}

.fp-stat-label[b-i90mkl5qw4] {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.fp-stat-value[b-i90mkl5qw4] {
    font-size: 1.3rem;
    font-weight: 700;
}

.fp-category-card[b-i90mkl5qw4] {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    overflow: hidden;
}

.fp-category-header[b-i90mkl5qw4] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.fp-category-header:hover[b-i90mkl5qw4] {
    background-color: var(--table-hover-bg);
}

.fp-expand-icon[b-i90mkl5qw4] {
    font-size: 0.75rem;
    width: 0.8rem;
    color: var(--text-muted);
}

.fp-category-name[b-i90mkl5qw4] {
    font-weight: 600;
    font-size: 0.88rem;
    min-width: 140px;
}

.fp-category-pct[b-i90mkl5qw4] {
    font-weight: 700;
    font-size: 0.82rem;
    min-width: 40px;
    text-align: right;
}

.fp-bar-container[b-i90mkl5qw4] {
    flex: 1;
    height: 8px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    overflow: hidden;
    max-width: 200px;
}

.fp-bar-fill[b-i90mkl5qw4] {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.fp-bar-good[b-i90mkl5qw4] { background: var(--color-success); }
.fp-bar-warn[b-i90mkl5qw4] { background: var(--color-warning); }
.fp-bar-bad[b-i90mkl5qw4] { background: var(--color-danger); }

.fp-category-count[b-i90mkl5qw4] {
    font-size: 0.75rem;
    color: var(--text-muted);
    min-width: 35px;
    text-align: right;
}

.fp-category-rules[b-i90mkl5qw4] {
    border-top: 1px solid var(--border-subtle);
    padding: 8px 14px 8px 32px;
}

.fp-rule-item[b-i90mkl5qw4] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 3px 0;
    font-size: 0.82rem;
}

.fp-rule-icon[b-i90mkl5qw4] {
    font-weight: 700;
    width: 1rem;
    text-align: center;
}

.fp-rule-name[b-i90mkl5qw4] {
    flex: 1;
    color: var(--text-primary);
}

.fp-share-overlay[b-i90mkl5qw4] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fp-share-modal[b-i90mkl5qw4] {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 20px;
    max-width: 700px;
    width: 95%;
}

.fp-share-preview[b-i90mkl5qw4] {
    display: flex;
    justify-content: center;
    overflow: auto;
}

/* Inline style replacements */
.fp-title[b-i90mkl5qw4] {
    margin-bottom: 0;
}

.fp-resource-name[b-i90mkl5qw4] {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.fp-resource-type[b-i90mkl5qw4] {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.fp-radar-placeholder[b-i90mkl5qw4] {
    width: 300px;
    height: 300px;
}

.fp-section-title[b-i90mkl5qw4] {
    font-size: 1.1rem;
}

.fp-badge-sm[b-i90mkl5qw4] {
    font-size: 0.6rem;
}
/* /Components/Pages/Heatmap.razor.rz.scp.css */
.hm-page-container[b-xfw4djfbke] {
    display: flex;
    flex-direction: column;
    height: calc(100dvh - 4.5rem);
    min-height: 300px;
    max-width: 100%;
    overflow: hidden;
}

.hm-scroll-container[b-xfw4djfbke] {
    flex: 1;
    min-height: 0;
    min-width: 0;
    overflow: auto;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    background: var(--bg-secondary);
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.hm-table[b-xfw4djfbke] {
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

/* Sticky header — each row individually sticky */
.hm-initiative-row > th[b-xfw4djfbke] {
    position: sticky;
    top: 0;
    z-index: 3;
}

.hm-category-row > th[b-xfw4djfbke] {
    position: sticky;
    top: 25px;
    z-index: 3;
}

.hm-rule-row > th[b-xfw4djfbke] {
    position: sticky;
    top: 43px; /* initiative (25px) + category (18px) */
    z-index: 3;
}

[b-xfw4djfbke] .hm-table > thead th {
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border-medium);
    padding: 6px 4px;
    text-align: center;
    white-space: nowrap;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Sticky first column */
.hm-sticky-col[b-xfw4djfbke] {
    position: sticky;
    left: 0;
    z-index: 2;
    background: var(--bg-secondary);
}

.hm-initiative-row > .hm-sticky-col[b-xfw4djfbke],
.hm-category-row > .hm-sticky-col[b-xfw4djfbke],
.hm-rule-row > .hm-sticky-col[b-xfw4djfbke] {
    z-index: 5;
    background: var(--bg-tertiary);
}

.hm-footer-row > .hm-sticky-col[b-xfw4djfbke] {
    z-index: 5;
    background: var(--bg-tertiary);
}

/* Initiative header */
.hm-initiative-header[b-xfw4djfbke] {
    border-left: 2px solid var(--color-info);
    letter-spacing: 0.04em;
    font-size: 0.7rem !important;
    color: var(--text-primary) !important;
    padding: 6px 4px !important;
    font-weight: 700 !important;
    background: var(--bg-tertiary) !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Category header */
.hm-category-header[b-xfw4djfbke] {
    border-left: 1px solid var(--border-medium);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.6rem !important;
    color: var(--text-muted) !important;
    padding: 4px 4px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Rule header */
.hm-rule-header[b-xfw4djfbke] {
    min-width: 32px;
    max-width: 32px;
    width: 32px;
    cursor: help;
}

.hm-rule-label[b-xfw4djfbke] {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-size: 0.6rem;
    display: inline-block;
    max-height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Resource column */
.hm-resource-header[b-xfw4djfbke] {
    width: 240px;
    text-align: left !important;
    padding-left: 12px !important;
}

.hm-resource-cell[b-xfw4djfbke] {
    padding: 4px 12px;
    border-bottom: 1px solid var(--border-subtle);
    width: 240px;
}

.hm-resource-name[b-xfw4djfbke] {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 260px;
}

.hm-resource-type[b-xfw4djfbke] {
    font-size: 0.62rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Percentage column */
.hm-pct-header[b-xfw4djfbke] {
    min-width: 36px;
    max-width: 36px;
}

.hm-pct-cell[b-xfw4djfbke] {
    text-align: center;
    padding: 4px 2px;
    border-bottom: 1px solid var(--border-subtle);
    width: 40px;
}

/* Cell */
.hm-cell[b-xfw4djfbke] {
    padding: 3px;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
    min-width: 32px;
    max-width: 32px;
    width: 32px;
    overflow: hidden;
}

.hm-dot[b-xfw4djfbke] {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transition: opacity var(--transition-fast);
}

.hm-compliant[b-xfw4djfbke] {
    background-color: var(--color-success);
}

.hm-noncompliant[b-xfw4djfbke] {
    background-color: var(--color-danger);
}

.hm-noncompliant-critical[b-xfw4djfbke] {
    background-color: #7f1d1d;
}

.hm-noncompliant-high[b-xfw4djfbke] {
    background-color: #b91c1c;
}

.hm-noncompliant-low[b-xfw4djfbke] {
    background-color: #fca5a5;
}

.hm-waived[b-xfw4djfbke] {
    background-color: var(--color-warning);
}

.hm-na[b-xfw4djfbke] {
    background-color: var(--text-muted);
    opacity: 0.06;
}

/* Legend dots */
.hm-legend[b-xfw4djfbke] {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

/* Footer */
.hm-footer-row > td[b-xfw4djfbke] {
    position: sticky;
    bottom: 0;
    z-index: 3;
    background: var(--bg-tertiary);
    border-top: 2px solid var(--border-medium);
    padding: 6px 3px;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.15);
}

/* Prevent horizontal scrollbar from overlapping sticky footer */
[b-xfw4djfbke] .hm-scroll-container table {
    margin-bottom: 2px;
}

.hm-footer-cell[b-xfw4djfbke] {
    text-align: center;
}

/* Expand row */
.hm-expand-row > td[b-xfw4djfbke] {
    background: var(--bg-tertiary);
    border-bottom: 2px solid var(--border-medium);
}

.hm-expand-cell[b-xfw4djfbke] {
    padding: 16px 20px !important;
}

.hm-resource-toggle[b-xfw4djfbke] {
    cursor: pointer;
    user-select: none;
}

.hm-resource-toggle:hover[b-xfw4djfbke] {
    color: var(--color-info) !important;
}

.hm-expand-icon[b-xfw4djfbke] {
    font-size: 0.7rem;
    margin-right: 2px;
    display: inline-block;
    width: 0.7rem;
}

.hm-scores-table[b-xfw4djfbke] {
    font-size: 0.78rem;
    border-collapse: collapse;
}

.hm-scores-table th[b-xfw4djfbke] {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    padding: 2px 10px 4px;
    border-bottom: 1px solid var(--border-subtle);
}

.hm-scores-table td[b-xfw4djfbke] {
    padding: 3px 10px;
}

/* Clickable cells */
.hm-clickable[b-xfw4djfbke] {
    cursor: pointer;
}

.hm-clickable:hover .hm-dot[b-xfw4djfbke] {
    outline: 2px solid var(--text-primary);
    outline-offset: 1px;
}

/* Instant CSS tooltip */
.hm-tip[b-xfw4djfbke] {
    position: relative;
}

.hm-tip:hover[b-xfw4djfbke] {
    z-index: 20;
}

.hm-tip[b-xfw4djfbke]::after {
    content: attr(data-tip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 8px;
    background: var(--bg-primary, #0a0f1a);
    color: var(--text-primary, #f1f5f9);
    border: 1px solid var(--border-medium);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 400;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.1s;
    z-index: 20;
}

.hm-tip:hover[b-xfw4djfbke]::after {
    opacity: 1;
}

/* Row hover */
[b-xfw4djfbke] .hm-table > tbody > tr {
    content-visibility: auto;
    contain-intrinsic-size: auto 36px;
}

[b-xfw4djfbke] .hm-table > tbody > tr:hover > td {
    background-color: var(--table-hover-bg);
}

[b-xfw4djfbke] .hm-table > tbody > tr:hover > .hm-sticky-col {
    background-color: var(--bg-tertiary);
}

/* Inline style replacements */
.hm-title[b-xfw4djfbke] {
    margin-bottom: 0;
}

.hm-filter-label[b-xfw4djfbke] {
    font-size: 0.8rem;
}

.hm-filter-select[b-xfw4djfbke] {
    width: auto;
}

.hm-legend-bar[b-xfw4djfbke] {
    font-size: 0.8rem;
}

.hm-pct-value[b-xfw4djfbke] {
    font-size: 0.75rem;
    font-weight: 600;
}

.hm-scores-detail[b-xfw4djfbke] {
    min-width: 200px;
}

.hm-scores-table .hm-text-right[b-xfw4djfbke] {
    text-align: right;
}

.hm-score-value[b-xfw4djfbke] {
    font-weight: 600;
}

.hm-footer-score[b-xfw4djfbke] {
    font-size: 0.6rem;
    font-weight: 600;
}

.hm-footer-label[b-xfw4djfbke] {
    font-weight: 700;
}
/* /Components/Pages/Home.razor.rz.scp.css */
    .dash-nav-link[b-88nmv0f5tc] {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        text-decoration: none;
        color: var(--text-primary);
        transition: background 0.15s;
    }

    .dash-nav-link:hover[b-88nmv0f5tc] {
        background: var(--bg-tertiary);
    }
/* /Components/Pages/ResourceTree.razor.rz.scp.css */
    .graph-wrap[b-ggfwnlal3h] {
        --pass: #22c55e; --fail: #ef4444; --warn: #f59e0b; --info: #3b82f6;
        font-family: var(--font-sans);
        user-select: none;
        -webkit-user-select: none;
    }
    .graph-header[b-ggfwnlal3h] {
        background: var(--gradient-header);
        border-radius: 12px; padding: 20px 24px; margin-bottom: 16px;
        color: var(--text-primary); display: flex; justify-content: space-between;
        align-items: center; flex-wrap: wrap; gap: 16px;
    }
    .graph-header h2[b-ggfwnlal3h] { margin: 0 0 10px; font-weight: 300; font-size: 1.3rem; }
    .gh-stats[b-ggfwnlal3h] { display: flex; gap: 20px; }
    .gh-stat .val[b-ggfwnlal3h] { font-size: 1.8rem; font-weight: 700; line-height: 1; }
    .gh-stat .lbl[b-ggfwnlal3h] { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; opacity: .6; margin-top: 2px; }
    .comp-ring[b-ggfwnlal3h] { width: 72px; height: 72px; position: relative; }
    .comp-ring svg[b-ggfwnlal3h] { transform: rotate(-90deg); }
    .comp-ring .rt[b-ggfwnlal3h] { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-size: 1rem; font-weight: 700; }

    .graph-svg-wrap[b-ggfwnlal3h] {
        background: var(--graph-bg); border-radius: 12px 12px 0 0;
        overflow: hidden; position: relative;
    }
    .graph-svg-wrap svg[b-ggfwnlal3h] { display: block; width: 100%; touch-action: none; }

    .zoom-controls[b-ggfwnlal3h] {
        position: absolute; top: 12px; right: 12px;
        display: flex; flex-direction: column; gap: 4px; z-index: 2;
    }
    .zoom-controls button[b-ggfwnlal3h] {
        width: 34px; height: 34px;
        border: 1px solid var(--graph-zoom-border); border-radius: 8px;
        background: var(--graph-zoom-bg); color: var(--graph-zoom-text);
        font-size: 1.1rem; cursor: pointer;
        display: flex; align-items: center; justify-content: center;
        transition: background .15s;
    }
    .zoom-controls button:hover[b-ggfwnlal3h] { background: var(--graph-zoom-border); }

    .edge-hierarchy[b-ggfwnlal3h] { stroke: var(--graph-edge-hierarchy); stroke-width: 1.5; }
    .edge-child[b-ggfwnlal3h] { stroke: var(--graph-edge-child); stroke-width: 1; stroke-dasharray: 4 3; }
    .gnode[b-ggfwnlal3h] { cursor: pointer; }
    .gnode .node-ring[b-ggfwnlal3h] { transition: filter .15s, opacity .15s; }
    .gnode:hover .node-ring[b-ggfwnlal3h] { filter: url(#glow); opacity: 0.85 !important; }
    .gnode.selected .node-ring[b-ggfwnlal3h] { stroke: white; stroke-width: 2.5; opacity: 0.85 !important; }
    .gnode text[b-ggfwnlal3h] { fill: var(--graph-text); font-size: 11px; pointer-events: none; text-anchor: middle; }
    .gnode:hover text[b-ggfwnlal3h] { fill: var(--graph-text-bright); }
    .gnode-pulse .node-ring[b-ggfwnlal3h] { animation: pulse-glow 2s ease-in-out infinite; }
    @@keyframes pulse-glow { 0%[b-ggfwnlal3h], 100%[b-ggfwnlal3h] { opacity: 0.5; } 50%[b-ggfwnlal3h] { opacity: 0.85; } }
    .gnode[b-ggfwnlal3h] { transition: opacity 0.2s; }

    .graph-legend[b-ggfwnlal3h] {
        display: flex; gap: 18px; flex-wrap: wrap;
        padding: 10px 16px; font-size: .78rem; color: var(--graph-text);
        background: var(--graph-legend-bg); border-radius: 0 0 12px 12px;
    }
    .graph-legend .leg-item[b-ggfwnlal3h] { display: flex; align-items: center; gap: 6px; }
    .leg-dot[b-ggfwnlal3h] { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
    .leg-line[b-ggfwnlal3h] { width: 24px; height: 0; border-top: 2px solid var(--graph-edge-hierarchy); flex-shrink: 0; }

    .graph-hint[b-ggfwnlal3h] {
        text-align: center; padding: 6px; font-size: .75rem; color: var(--graph-text-muted);
    }

    .detail-panel[b-ggfwnlal3h] {
        background: var(--bg-secondary); border: 1px solid var(--border-subtle);
        border-radius: 12px; padding: 20px; margin-top: 16px; color: var(--text-primary);
    }
    .detail-panel h4[b-ggfwnlal3h] { margin: 0 0 4px; font-size: 1.1rem; }
    .detail-panel .dp-type[b-ggfwnlal3h] { font-size: .8rem; color: var(--text-muted); margin-bottom: 12px; }
    .dp-rules[b-ggfwnlal3h] { list-style: none; padding: 0; margin: 0; }
    .dp-rules li[b-ggfwnlal3h] {
        display: flex; align-items: center; gap: 8px;
        padding: 5px 0; font-size: .85rem; border-bottom: 1px solid var(--graph-dp-border);
    }
    .dp-rules li:last-child[b-ggfwnlal3h] { border: none; }
    .dp-sev[b-ggfwnlal3h] { font-size: .65rem; padding: 1px 6px; border-radius: 3px; font-weight: 600; }
    .dp-sev.Critical[b-ggfwnlal3h] { background: var(--badge-danger-bg); color: var(--badge-danger-fg); }
    .dp-sev.High[b-ggfwnlal3h] { background: var(--badge-warning-bg); color: var(--badge-warning-fg); }
    .dp-sev.Medium[b-ggfwnlal3h] { background: var(--badge-info-bg); color: var(--badge-info-fg); }
    .dp-sev.Low[b-ggfwnlal3h] { background: var(--badge-secondary-bg); color: var(--badge-secondary-fg); }

    .fp-section[b-ggfwnlal3h] {
        background: var(--bg-secondary); border: 1px solid var(--border-subtle);
        border-radius: 12px; padding: 20px 24px; color: var(--text-primary);
    }
    .fp-stat-card[b-ggfwnlal3h] {
        background: var(--glass-bg); border: 1px solid var(--glass-border);
        border-radius: 8px; padding: 10px 16px; min-width: 80px; text-align: center;
    }
    .fp-stat-label[b-ggfwnlal3h] { font-size: .65rem; text-transform: uppercase; letter-spacing: .04em; color: var(--text-muted); margin-bottom: 2px; }
    .fp-stat-value[b-ggfwnlal3h] { font-size: 1.3rem; font-weight: 700; }
    .fp-category-card[b-ggfwnlal3h] { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 8px; overflow: hidden; }
    .fp-category-header[b-ggfwnlal3h] { display: flex; align-items: center; gap: 10px; padding: 10px 14px; cursor: pointer; transition: background-color var(--transition-fast); }
    .fp-category-header:hover[b-ggfwnlal3h] { background-color: var(--table-hover-bg); }
    .fp-expand-icon[b-ggfwnlal3h] { font-size: .75rem; width: .8rem; color: var(--text-muted); }
    .fp-category-name[b-ggfwnlal3h] { font-weight: 600; font-size: .88rem; min-width: 140px; }
    .fp-category-pct[b-ggfwnlal3h] { font-weight: 700; font-size: .82rem; min-width: 40px; text-align: right; }
    .fp-bar-container[b-ggfwnlal3h] { flex: 1; height: 8px; background: var(--bg-tertiary); border-radius: 4px; overflow: hidden; max-width: 200px; }
    .fp-bar-fill[b-ggfwnlal3h] { height: 100%; border-radius: 4px; transition: width .3s ease; }
    .fp-bar-good[b-ggfwnlal3h] { background: var(--color-success); }
    .fp-bar-warn[b-ggfwnlal3h] { background: var(--color-warning); }
    .fp-bar-bad[b-ggfwnlal3h] { background: var(--color-danger); }
    .fp-category-count[b-ggfwnlal3h] { font-size: .75rem; color: var(--text-muted); min-width: 35px; text-align: right; }
    .fp-category-rules[b-ggfwnlal3h] { border-top: 1px solid var(--border-subtle); padding: 8px 14px 8px 32px; }
    .fp-rule-item[b-ggfwnlal3h] { display: flex; align-items: center; gap: 8px; padding: 3px 0; font-size: .82rem; }
    .fp-rule-icon[b-ggfwnlal3h] { font-weight: 700; width: 1rem; text-align: center; }
    .fp-rule-name[b-ggfwnlal3h] { flex: 1; color: var(--text-primary); }
    .fp-share-overlay[b-ggfwnlal3h] { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 100; display: flex; align-items: center; justify-content: center; }
    .fp-share-modal[b-ggfwnlal3h] { background: var(--bg-secondary); border: 1px solid var(--border-subtle); border-radius: 12px; padding: 20px; max-width: 700px; width: 95%; }
    .fp-share-preview[b-ggfwnlal3h] { display: flex; justify-content: center; overflow: auto; }
/* /Components/Pages/Scan.razor.rz.scp.css */
.initiative-group-label[b-od8y9i5lwa] {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-secondary, #94a3b8);
    padding: 0.5rem 0 0.2rem;
    margin-top: 0.25rem;
    border-top: 1px solid var(--border-subtle, rgba(148, 163, 184, 0.15));
}

.initiative-group-label:first-child[b-od8y9i5lwa] {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}
/* /Components/Pages/Team.razor.rz.scp.css */
.team-detail-row > td[b-sezfvcsmft] {
    background: var(--bg-tertiary);
    border-top: none !important;
}

.team-detail-item[b-sezfvcsmft] {
    color: var(--text-primary);
}

.team-detail-item .text-muted[b-sezfvcsmft] {
    color: var(--text-secondary) !important;
}

.team-detail-grid[b-sezfvcsmft] {
    padding: 8px 12px 4px 52px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.team-detail-item[b-sezfvcsmft] {
    display: grid;
    grid-template-columns: 60px 1fr 120px 80px;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
}

.team-detail-sub[b-sezfvcsmft] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.team-detail-cloud-role[b-sezfvcsmft] {
    text-align: right;
}
/* /Components/Shared/DiagModal.razor.rz.scp.css */
.diag-backdrop[b-s9w2purpz8] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: var(--z-diag-backdrop, 10000);
}

.diag-modal[b-s9w2purpz8] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-secondary, #1e293b);
    border: 1px solid var(--border-subtle, rgba(148,163,184,.15));
    border-radius: 8px;
    padding: 1.5rem;
    z-index: var(--z-diag-modal, 10001);
    max-width: 420px;
    width: 90%;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.diag-code-box[b-s9w2purpz8] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-tertiary, rgba(0,0,0,0.2));
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
}

.diag-code-box code[b-s9w2purpz8] {
    flex: 1;
    font-weight: 600;
}
/* /Components/Shared/ErrorDisplay.razor.rz.scp.css */
.error-display[b-je0xq1ujqn] {
    background: var(--alert-danger-bg, rgba(239,68,68,0.08));
    border: 1px solid var(--alert-danger-border, rgba(239,68,68,0.25));
    border-radius: 10px;
    padding: 16px 20px;
    margin-top: 8px;
}
.error-display-header[b-je0xq1ujqn] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.error-display-icon[b-je0xq1ujqn] {
    font-size: 1.1rem;
}
.error-display-title[b-je0xq1ujqn] {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--alert-danger-fg, #f87171);
}
.error-display-message[b-je0xq1ujqn] {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.error-display-details[b-je0xq1ujqn] {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 0.72rem;
    color: var(--text-muted);
    max-height: 200px;
    overflow-y: auto;
    white-space: pre-wrap;
    word-break: break-all;
    margin-bottom: 8px;
}
.error-display-actions[b-je0xq1ujqn] {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
/* /Components/Shared/ModalDialog.razor.rz.scp.css */
.modal-backdrop[b-4ttvouajvt] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: var(--z-modal-backdrop, 1040);
}

.modal[b-4ttvouajvt] {
    z-index: var(--z-modal, 1050);
}

.modal-content[b-4ttvouajvt] {
    background: var(--bg-secondary, #fff);
    border: 1px solid var(--border-subtle, #dee2e6);
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}
/* /Components/Shared/RadarChart.razor.rz.scp.css */
.radar-axis[b-3de14hl18n] {
    stroke: var(--border-medium, rgba(148,163,184,0.2));
    stroke-width: 0.5;
}

.radar-label[b-3de14hl18n] {
    font-size: 0.6rem;
    font-family: var(--font-sans, sans-serif);
}

.radar-label-name[b-3de14hl18n] {
    fill: var(--text-primary, #e2e8f0);
}

.radar-label-pct[b-3de14hl18n] {
    fill: var(--text-secondary, #94a3b8);
    font-size: 0.6rem;
}

.radar-label-dense[b-3de14hl18n] {
    font-size: 0.5rem;
}
.radar-label-dense .radar-label-pct[b-3de14hl18n] {
    font-size: 0.5rem;
}
/* /Components/Shared/SendDiagnosticsButton.razor.rz.scp.css */
.diag-trigger-btn[b-ieynx16x5x] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    background: none;
    border: none;
    color: var(--sidebar-text, rgba(255,255,255,.7));
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 0;
    border-left: 3px solid transparent;
    transition: color 0.15s, background-color 0.15s;
}

.diag-trigger-btn:hover[b-ieynx16x5x] {
    background-color: var(--sidebar-hover-bg, rgba(255,255,255,.05));
    color: var(--sidebar-text-hover, rgba(255,255,255,.9));
    border-left-color: rgba(148, 163, 184, 0.3);
}
