/* _content/CustomerPortal.Web/Components/Layout/AdminLayout.razor.rz.scp.css */
#blazor-error-ui[b-8lh8tu4wow] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-8lh8tu4wow] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* ── "More" dropdown in admin top-bar ─────────────────────────────── */
.more-dropdown[b-8lh8tu4wow] { position: relative; }
.more-dropdown > .more-toggle[b-8lh8tu4wow] {
    background: none; border: none; font-family: inherit;
    padding: 8px 12px; border-radius: 8px;
    color: var(--text-muted); font-size: 14px; font-weight: 500;
    cursor: pointer;
    display: inline-flex; align-items: center;
}
.more-dropdown > .more-toggle:hover[b-8lh8tu4wow] { background: var(--surface-2); color: var(--text); }
.more-dropdown.open > .more-toggle[b-8lh8tu4wow] { background: var(--surface-2); color: var(--text); }
.more-dropdown > .more-toggle.active[b-8lh8tu4wow] { color: var(--text); background: var(--surface-2); }
.more-menu[b-8lh8tu4wow] {
    position: absolute; top: calc(100% + 6px); left: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 6px;
    min-width: 180px;
    z-index: 60;
    display: flex; flex-direction: column;
}
.more-menu[b-8lh8tu4wow]  a {
    padding: 8px 12px; border-radius: 8px;
    color: var(--text-muted); font-size: 14px; font-weight: 500;
    text-decoration: none;
}
.more-menu[b-8lh8tu4wow]  a:hover { background: var(--surface-2); color: var(--text); text-decoration: none; }
.more-menu[b-8lh8tu4wow]  a.active { background: var(--surface-2); color: var(--text); }

/* ── Bell icon + notification dropdown ────────────────────────────── */
.bell-wrap[b-8lh8tu4wow] {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 6px;
    border-radius: 6px;
}
.bell-wrap:hover[b-8lh8tu4wow] {
    background: var(--bg-hover, rgba(0,0,0,.06));
}
.bell-icon[b-8lh8tu4wow] {
    color: var(--text-muted, #666);
}
.bell-badge[b-8lh8tu4wow] {
    position: absolute;
    top: 2px;
    right: 0;
    background: var(--danger, #e53e3e);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}
.notif-dropdown[b-8lh8tu4wow] {
    position: absolute;
    top: 100%;
    right: 0;
    width: 340px;
    max-height: 420px;
    background: var(--bg-surface, #fff);
    border: 1px solid var(--border, #e2e2e2);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 200;
    overflow: hidden;
    margin-top: 4px;
}
.notif-header[b-8lh8tu4wow] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border, #e2e2e2);
    font-size: 14px;
}
.notif-header .btn-link[b-8lh8tu4wow] {
    background: none;
    border: none;
    color: var(--accent, #2563eb);
    font-size: 12px;
    cursor: pointer;
    padding: 0;
}
.notif-header .btn-link:hover[b-8lh8tu4wow] {
    text-decoration: underline;
}
.notif-list[b-8lh8tu4wow] {
    overflow-y: auto;
    max-height: 360px;
}
.notif-item[b-8lh8tu4wow] {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-light, #f0f0f0);
    cursor: pointer;
    transition: background .12s;
}
.notif-item:hover[b-8lh8tu4wow] {
    background: var(--bg-hover, rgba(0,0,0,.03));
}
.notif-item:last-child[b-8lh8tu4wow] {
    border-bottom: none;
}
.notif-unread[b-8lh8tu4wow] {
    background: var(--bg-accent-faint, rgba(37,99,235,.04));
    border-left: 3px solid var(--accent, #2563eb);
}
.notif-title[b-8lh8tu4wow] {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-primary, #1a1a1a);
}
.notif-message[b-8lh8tu4wow] {
    font-size: 12px;
    color: var(--text-muted, #666);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.notif-time[b-8lh8tu4wow] {
    font-size: 11px;
    color: var(--text-faint, #999);
    margin-top: 3px;
}
.notif-empty[b-8lh8tu4wow] {
    padding: 24px 14px;
    text-align: center;
    color: var(--text-muted, #666);
    font-size: 13px;
}

/* ── Click-away backdrop for dropdowns ────────────────────────────── */
.dropdown-backdrop[b-8lh8tu4wow] {
    position: fixed;
    inset: 0;
    z-index: 49;
}

/* ── Avatar dropdown (enhanced for admin) ─────────────────────────── */
.avatar-wrap[b-8lh8tu4wow] { position: relative; cursor: pointer; }
.user-dropdown[b-8lh8tu4wow] {
    position: absolute;
    top: calc(100% + 6px); right: 0;
    width: 240px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 200;
    overflow: hidden;
    padding: 4px;
}
.user-dropdown-head[b-8lh8tu4wow] {
    padding: 14px 14px 12px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}
.user-dropdown-name[b-8lh8tu4wow] {
    font-size: 14px; font-weight: 600;
    color: var(--text);
}
.user-dropdown-email[b-8lh8tu4wow] {
    font-size: 12px; color: var(--text-faint);
    margin-top: 2px;
}
.user-dropdown-item[b-8lh8tu4wow] {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: none;
    transition: background 0.08s ease, color 0.08s ease;
}
.user-dropdown-item:hover[b-8lh8tu4wow] {
    background: var(--surface-2);
    color: var(--text);
    text-decoration: none;
}
.user-dropdown-item svg[b-8lh8tu4wow] { color: var(--text-faint); flex-shrink: 0; }
/* _content/CustomerPortal.Web/Components/Layout/AuthLayout.razor.rz.scp.css */
#blazor-error-ui[b-d99tfd6ejj] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-d99tfd6ejj] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/CustomerPortal.Web/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-6l8hkswt8e] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-6l8hkswt8e] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* Bell icon + notification dropdown */
.bell-wrap[b-6l8hkswt8e] {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 6px;
    border-radius: 6px;
}

.bell-wrap:hover[b-6l8hkswt8e] {
    background: var(--bg-hover, rgba(0,0,0,.06));
}

.bell-icon[b-6l8hkswt8e] {
    color: var(--text-muted, #666);
}

.bell-badge[b-6l8hkswt8e] {
    position: absolute;
    top: 2px;
    right: 0;
    background: var(--danger, #e53e3e);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    min-width: 16px;
    height: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.notif-dropdown[b-6l8hkswt8e] {
    position: absolute;
    top: 100%;
    right: 0;
    width: 340px;
    max-height: 420px;
    background: var(--bg-surface, #fff);
    border: 1px solid var(--border, #e2e2e2);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 200;
    overflow: hidden;
    margin-top: 4px;
}

.notif-header[b-6l8hkswt8e] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border, #e2e2e2);
    font-size: 14px;
}

.notif-header .btn-link[b-6l8hkswt8e] {
    background: none;
    border: none;
    color: var(--accent, #2563eb);
    font-size: 12px;
    cursor: pointer;
    padding: 0;
}

.notif-header .btn-link:hover[b-6l8hkswt8e] {
    text-decoration: underline;
}

.notif-list[b-6l8hkswt8e] {
    overflow-y: auto;
    max-height: 360px;
}

.notif-item[b-6l8hkswt8e] {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border-light, #f0f0f0);
    cursor: pointer;
    transition: background .12s;
}

.notif-item:hover[b-6l8hkswt8e] {
    background: var(--bg-hover, rgba(0,0,0,.03));
}

.notif-item:last-child[b-6l8hkswt8e] {
    border-bottom: none;
}

.notif-unread[b-6l8hkswt8e] {
    background: var(--bg-accent-faint, rgba(37,99,235,.08));
    border-left: 3px solid var(--accent, #2563eb);
}

.notif-title[b-6l8hkswt8e] {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 2px;
    color: var(--text-primary, #1a1a1a);
}

.notif-unread .notif-title[b-6l8hkswt8e] {
    font-weight: 600;
}

.notif-message[b-6l8hkswt8e] {
    font-size: 12px;
    color: var(--text-muted, #666);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notif-time[b-6l8hkswt8e] {
    font-size: 11px;
    color: var(--text-faint, #999);
    margin-top: 3px;
}

.notif-empty[b-6l8hkswt8e] {
    padding: 24px 14px;
    text-align: center;
    color: var(--text-muted, #666);
    font-size: 13px;
}

/* Click-away backdrop for dropdowns */
.dropdown-backdrop[b-6l8hkswt8e] {
    position: fixed;
    inset: 0;
    z-index: 49;
}

/* User avatar dropdown */
.avatar-wrap[b-6l8hkswt8e] {
    position: relative;
    cursor: pointer;
}

.user-dropdown[b-6l8hkswt8e] {
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    background: var(--bg-surface, #fff);
    border: 1px solid var(--border, #e2e2e2);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 200;
    overflow: hidden;
    margin-top: 6px;
}

.user-dropdown-name[b-6l8hkswt8e] {
    padding: 12px 14px 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
    border-bottom: 1px solid var(--border-light, #f0f0f0);
}

.user-dropdown-item[b-6l8hkswt8e] {
    display: block;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text-muted, #666);
    text-decoration: none;
    transition: background .12s;
}

.user-dropdown-item:hover[b-6l8hkswt8e] {
    background: var(--bg-hover, rgba(0,0,0,.03));
    color: var(--text-primary, #1a1a1a);
}

/* "More" dropdown in customer nav */
.more-dropdown[b-6l8hkswt8e] { position: relative; }
.more-dropdown > .more-toggle[b-6l8hkswt8e] {
    background: none; border: none; font-family: inherit;
    padding: 8px 12px; border-radius: 8px;
    color: var(--text-muted, #666); font-size: 14px; font-weight: 500;
    cursor: pointer;
    display: inline-flex; align-items: center;
}
.more-dropdown > .more-toggle:hover[b-6l8hkswt8e] { background: var(--bg-hover, rgba(0,0,0,.06)); color: var(--text-primary, #1a1a1a); }
.more-dropdown.open > .more-toggle[b-6l8hkswt8e] { background: var(--bg-hover, rgba(0,0,0,.06)); color: var(--text-primary, #1a1a1a); }
.more-dropdown > .more-toggle.active[b-6l8hkswt8e] { color: var(--text-primary, #1a1a1a); background: var(--bg-hover, rgba(0,0,0,.06)); font-weight: 600; border-bottom: 2px solid var(--primary, #2563eb); }
.more-menu[b-6l8hkswt8e] {
    position: absolute; top: calc(100% + 6px); left: 0;
    background: var(--bg-surface, #fff);
    border: 1px solid var(--border, #e2e2e2);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    padding: 6px;
    min-width: 180px;
    z-index: 60;
    display: flex; flex-direction: column;
}
.more-menu[b-6l8hkswt8e]  a {
    padding: 8px 12px; border-radius: 8px;
    color: var(--text-muted, #666); font-size: 14px; font-weight: 500;
    text-decoration: none;
}
.more-menu[b-6l8hkswt8e]  a:hover { background: var(--bg-hover, rgba(0,0,0,.06)); color: var(--text-primary, #1a1a1a); text-decoration: none; }
.more-menu[b-6l8hkswt8e]  a.active { background: var(--bg-hover, rgba(0,0,0,.06)); color: var(--text-primary, #1a1a1a); font-weight: 600; }

/* Hamburger button — hidden on desktop, shown at mobile breakpoint */
.hamburger-btn[b-6l8hkswt8e] {
    display: none;
    background: none;
    border: none;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-muted, #666);
    align-items: center;
}
.hamburger-btn:hover[b-6l8hkswt8e] {
    background: var(--bg-hover, rgba(0,0,0,.06));
    color: var(--text-primary, #1a1a1a);
}

/* Mobile slide-out drawer */
.drawer-backdrop[b-6l8hkswt8e] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 40;
    display: none;
}
.nav-drawer[b-6l8hkswt8e] {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background: var(--bg-surface, #fff);
    z-index: 42;
    padding: 64px 12px 24px;
    overflow-y: auto;
    box-shadow: 4px 0 16px rgba(0,0,0,0.08);
    display: none;
    flex-direction: column;
    gap: 2px;
    animation: drawer-slide-in-b-6l8hkswt8e 0.2s ease;
}
.nav-drawer[b-6l8hkswt8e]  a {
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--text-muted, #666);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.12s;
}
.nav-drawer[b-6l8hkswt8e]  a:hover {
    background: var(--bg-hover, rgba(0,0,0,.06));
    color: var(--text-primary, #1a1a1a);
    text-decoration: none;
}
.nav-drawer[b-6l8hkswt8e]  a.active {
    background: var(--bg-hover, rgba(0,0,0,.06));
    color: var(--text-primary, #1a1a1a);
    font-weight: 600;
}
.drawer-divider[b-6l8hkswt8e] {
    height: 1px;
    background: var(--border, #e2e2e2);
    margin: 8px 14px;
}

@keyframes drawer-slide-in-b-6l8hkswt8e {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@media (max-width: 900px) {
    .hamburger-btn[b-6l8hkswt8e] { display: flex; }
    .drawer-backdrop[b-6l8hkswt8e] { display: block; }
    .nav-drawer[b-6l8hkswt8e] { display: flex; }
    .notif-dropdown[b-6l8hkswt8e] { position: fixed; left: 8px; right: 8px; top: 56px; width: auto; max-height: 70vh; }
}
/* _content/CustomerPortal.Web/Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-wu41vxt3rm] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-wu41vxt3rm] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-wu41vxt3rm] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-wu41vxt3rm] {
    font-size: 1.1rem;
}

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

.bi-house-door-fill-nav-menu[b-wu41vxt3rm] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' 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");
}

.bi-plus-square-fill-nav-menu[b-wu41vxt3rm] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-wu41vxt3rm] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-wu41vxt3rm] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

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

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

    .nav-item[b-wu41vxt3rm]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-wu41vxt3rm]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-wu41vxt3rm]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-wu41vxt3rm] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-wu41vxt3rm] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-wu41vxt3rm] {
        display: none;
    }

    .nav-scrollable[b-wu41vxt3rm] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/CustomerPortal.Web/Components/Pages/Admin/Billing.razor.rz.scp.css */
/* Sub-tab strip — capsule background with active pill highlight */
.subtabs[b-zdyld4gk9f] {
    display: flex;
    gap: 4px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 20px;
    width: fit-content;
}

.subtabs a[b-zdyld4gk9f] {
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.08s ease, color 0.08s ease;
}
.subtabs a:hover[b-zdyld4gk9f] {
    background: white;
    color: var(--text);
    text-decoration: none;
}
.subtabs a.active[b-zdyld4gk9f] {
    background: white;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

/* Count badge inside sub-tab pills */
.subtab-count[b-zdyld4gk9f] {
    font-size: 11px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-faint);
    padding: 1px 7px;
    border-radius: 999px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.subtabs a.active .subtab-count[b-zdyld4gk9f] {
    background: var(--surface-2);
}

/* Caution-tinted badge for items needing attention */
.subtab-count-alert[b-zdyld4gk9f] {
    color: #b45309;
    background: var(--caution-bg);
    border-color: #fbbf24;
}
/* _content/CustomerPortal.Web/Components/Pages/Admin/Customers.razor.rz.scp.css */
.user-search-wrap[b-7sl4v4irj6] {
    position: relative;
}

.search-results[b-7sl4v4irj6] {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: 4px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
    max-height: 400px;
    overflow-y: auto;
    z-index: 100;
}

.search-item[b-7sl4v4irj6] {
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
}

.search-item:last-child[b-7sl4v4irj6] {
    border-bottom: none;
}

.search-item.row-link[b-7sl4v4irj6] {
    cursor: pointer;
    transition: background .12s ease;
}

.search-item.row-link:hover[b-7sl4v4irj6] {
    background: #f8fafc;
}
/* _content/CustomerPortal.Web/Components/Pages/Admin/Home.razor.rz.scp.css */
/* Attention card grid */
.card-grid[b-xg2qjyv24x] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.attn[b-xg2qjyv24x] {
    display: block;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    text-decoration: none;
    color: var(--text);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.12s ease, border-color 0.12s ease;
}
.attn:hover[b-xg2qjyv24x] {
    border-color: var(--border-strong);
    box-shadow: var(--shadow);
}

/* Card head — clickable link to the queue/sub-tab */
a.attn-head[b-xg2qjyv24x] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: -6px -8px 8px;
    padding: 6px 8px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    transition: background 0.08s ease;
}
a.attn-head:hover[b-xg2qjyv24x] {
    background: var(--surface-2);
    text-decoration: none;
}

/* Non-link head for empty/zero-state card */
.attn-head-static[b-xg2qjyv24x] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.attn-icon[b-xg2qjyv24x] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.attn-icon-caution[b-xg2qjyv24x] { background: var(--caution-bg); color: var(--caution); }
.attn-icon-routine[b-xg2qjyv24x] { background: var(--routine-bg); color: var(--routine); }
.attn-icon-urgent[b-xg2qjyv24x]  { background: var(--urgent-bg);  color: var(--urgent);  }
.attn-icon-muted[b-xg2qjyv24x]   { background: var(--surface-2);  color: var(--text-faint); }

.attn-label[b-xg2qjyv24x] {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.attn-count[b-xg2qjyv24x] {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    margin-top: 2px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.attn-count-zero[b-xg2qjyv24x] {
    color: var(--text-faint);
}

.attn-breakdown[b-xg2qjyv24x] {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-faint);
    letter-spacing: 0;
    text-transform: none;
}

.attn-rows[b-xg2qjyv24x] {
    border-top: 1px solid var(--border);
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin: 0 -8px -6px;
}

/* Preview rows — individually clickable to specific items */
a.attn-row[b-xg2qjyv24x] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text);
    padding: 6px 8px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.08s ease;
}
a.attn-row:hover[b-xg2qjyv24x] {
    background: var(--surface-2);
    text-decoration: none;
    color: var(--text);
}

/* Empty/zero-state card */
.attn-empty[b-xg2qjyv24x] {
    background: var(--surface-2);
}
.attn-empty .attn-rows[b-xg2qjyv24x] {
    display: none;
}
.attn-empty-msg[b-xg2qjyv24x] {
    font-size: 13px;
    color: var(--text-faint);
    padding-top: 4px;
    border-top: 1px solid var(--border);
    margin-top: 4px;
}

/* Activity feed */
.feed[b-xg2qjyv24x] {
    display: flex;
    flex-direction: column;
    padding: 4px 0;
}
.feed-item[b-xg2qjyv24x] {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 24px;
    border-bottom: 1px solid var(--border);
}
.feed-item:last-child[b-xg2qjyv24x] { border-bottom: none; }
.feed-dot[b-xg2qjyv24x] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.feed-dot-good[b-xg2qjyv24x] { background: var(--good); }
.feed-dot-routine[b-xg2qjyv24x] { background: var(--routine); }
.feed-body[b-xg2qjyv24x] {
    flex: 1;
    font-size: 13px;
}
.feed-body strong[b-xg2qjyv24x] { font-weight: 600; }
.feed-ts[b-xg2qjyv24x] {
    font-size: 12px;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .card-grid[b-xg2qjyv24x] { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
    .card-grid[b-xg2qjyv24x] { grid-template-columns: 1fr; }
}
/* _content/CustomerPortal.Web/Components/Pages/Admin/OrgDetail.razor.rz.scp.css */
.org-two-col[b-ls4lkcqk6i] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 1024px) {
    .org-two-col[b-ls4lkcqk6i] {
        grid-template-columns: 1fr;
    }
}

.match-card[b-ls4lkcqk6i] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.match-card:hover[b-ls4lkcqk6i] {
    border-color: var(--accent);
    background: var(--bg-tint);
}

.match-card-selected[b-ls4lkcqk6i] {
    border-color: var(--accent);
    background: var(--bg-tint);
}
/* _content/CustomerPortal.Web/Components/Pages/Admin/OrphanTicketsTab.razor.rz.scp.css */
.match-card[b-uu7nn6esuq] {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s;
}

.match-card:hover[b-uu7nn6esuq] {
    border-color: var(--accent);
}

.match-card.selected[b-uu7nn6esuq] {
    border-color: var(--accent);
    background: var(--accent-bg, rgba(37, 99, 235, 0.06));
}
/* _content/CustomerPortal.Web/Components/Pages/Admin/ProductCatalogManagement.razor.rz.scp.css */
.match-card[b-hje24wzay2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.match-card:hover[b-hje24wzay2] {
    border-color: var(--accent);
    background: var(--bg-tint);
}

.match-card-selected[b-hje24wzay2] {
    border-color: var(--accent);
    background: var(--bg-tint);
}
/* _content/CustomerPortal.Web/Components/Pages/Admin/Settings.razor.rz.scp.css */
/* Sub-tab strip — capsule background with active pill highlight */
.subtabs[b-jf1mk8nr83] {
    display: flex;
    gap: 4px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 20px;
    width: fit-content;
}

.subtabs a[b-jf1mk8nr83] {
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.08s ease, color 0.08s ease;
}
.subtabs a:hover[b-jf1mk8nr83] {
    background: white;
    color: var(--text);
    text-decoration: none;
}
.subtabs a.active[b-jf1mk8nr83] {
    background: white;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

/* Count badge inside sub-tab pills */
.subtab-count[b-jf1mk8nr83] {
    font-size: 11px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-faint);
    padding: 1px 7px;
    border-radius: 999px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.subtabs a.active .subtab-count[b-jf1mk8nr83] {
    background: var(--surface-2);
}

@media (max-width: 480px) {
    .subtabs[b-jf1mk8nr83] { flex-wrap: wrap; width: auto; }
    .subtabs a[b-jf1mk8nr83] { font-size: 13px; padding: 6px 10px; }
}
/* _content/CustomerPortal.Web/Components/Pages/Admin/Subscriptions.razor.rz.scp.css */
/* Sub-tab strip — capsule background with active pill highlight */
.subtabs[b-adh0ui2mwq] {
    display: flex;
    gap: 4px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 20px;
    width: fit-content;
}

.subtabs a[b-adh0ui2mwq] {
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.08s ease, color 0.08s ease;
}
.subtabs a:hover[b-adh0ui2mwq] {
    background: white;
    color: var(--text);
    text-decoration: none;
}
.subtabs a.active[b-adh0ui2mwq] {
    background: white;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

/* Count badge inside sub-tab pills */
.subtab-count[b-adh0ui2mwq] {
    font-size: 11px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-faint);
    padding: 1px 7px;
    border-radius: 999px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.subtabs a.active .subtab-count[b-adh0ui2mwq] {
    background: var(--surface-2);
}

/* Caution-tinted badge when change requests > 0 */
.subtab-count-alert[b-adh0ui2mwq] {
    color: #b45309;
    background: var(--caution-bg);
    border-color: #fbbf24;
}

@media (max-width: 480px) {
    .subtabs[b-adh0ui2mwq] { flex-wrap: wrap; width: auto; }
    .subtabs a[b-adh0ui2mwq] { font-size: 13px; padding: 6px 10px; }
}
/* _content/CustomerPortal.Web/Components/Pages/Admin/Support.razor.rz.scp.css */
/* Sub-tab strip — capsule background with active pill highlight */
.subtabs[b-fxvwyxqrur] {
    display: flex;
    gap: 4px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px;
    margin-bottom: 20px;
    width: fit-content;
}

.subtabs a[b-fxvwyxqrur] {
    padding: 8px 14px;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.08s ease, color 0.08s ease;
}
.subtabs a:hover[b-fxvwyxqrur] {
    background: white;
    color: var(--text);
    text-decoration: none;
}
.subtabs a.active[b-fxvwyxqrur] {
    background: white;
    color: var(--text);
    box-shadow: var(--shadow-sm);
}

/* Count badge inside sub-tab pills */
.subtab-count[b-fxvwyxqrur] {
    font-size: 11px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    color: var(--text-faint);
    padding: 1px 7px;
    border-radius: 999px;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}
.subtabs a.active .subtab-count[b-fxvwyxqrur] {
    background: var(--surface-2);
}

/* Caution-tinted badge when orphan tickets > 0 */
.subtab-count-alert[b-fxvwyxqrur] {
    color: #b45309;
    background: var(--caution-bg);
    border-color: #fbbf24;
}

@media (max-width: 480px) {
    .subtabs[b-fxvwyxqrur] { flex-wrap: wrap; width: auto; }
    .subtabs a[b-fxvwyxqrur] { font-size: 13px; padding: 6px 10px; }
}
/* _content/CustomerPortal.Web/Components/Pages/Admin/UnmatchedInbox.razor.rz.scp.css */
.match-card[b-s42sqczvco] {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.15s;
}

.match-card:hover[b-s42sqczvco] {
    border-color: var(--accent);
}

.match-card.selected[b-s42sqczvco] {
    border-color: var(--accent);
    background: var(--accent-bg, rgba(37, 99, 235, 0.06));
}
/* _content/CustomerPortal.Web/Components/Pages/Hub.razor.rz.scp.css */
/* Dashboard summary grid — 2x2 on desktop, stacks down */
.dash-grid[b-07d0ay0gxw] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.dash-card-head[b-07d0ay0gxw] {
    display: flex;
    align-items: center;
    gap: 10px;
}
.dash-card-head h3[b-07d0ay0gxw] {
    margin: 0;
    font-size: 18px;
    letter-spacing: -0.015em;
    font-weight: 700;
}

/* Quick actions row — 3 columns */
.dash-actions[b-07d0ay0gxw] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.dash-action[b-07d0ay0gxw] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    min-height: 100px;
}

/* Empty state hint inside summary cards */
.empty-hint[b-07d0ay0gxw] {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

/* Attention section — items needing customer action */
.attention-section[b-07d0ay0gxw] {
    margin-bottom: 24px;
}

.attention-header[b-07d0ay0gxw] {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--text-muted);
}

.attention-item[b-07d0ay0gxw] {
    padding: 12px 16px;
}

@media (max-width: 1024px) {
    .dash-actions[b-07d0ay0gxw] {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .dash-grid[b-07d0ay0gxw] {
        grid-template-columns: 1fr;
    }
    .dash-actions[b-07d0ay0gxw] {
        grid-template-columns: 1fr;
    }
    .dash-action[b-07d0ay0gxw] {
        padding: 16px;
    }
}
/* _content/CustomerPortal.Web/Components/Pages/OrderDetail.razor.rz.scp.css */
.status-step[b-jypwz2mebo]          { display: flex; align-items: flex-start; gap: 12px; padding: 4px 0; }
.status-dot[b-jypwz2mebo]           { width: 12px; height: 12px; border-radius: 50%; margin-top: 4px; flex: 0 0 auto; }
.status-done .status-dot[b-jypwz2mebo]    { background: var(--good); }
.status-current .status-dot[b-jypwz2mebo] { background: var(--routine); box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15); }
.status-pending .status-dot[b-jypwz2mebo] { background: var(--border-strong); }
.status-line[b-jypwz2mebo]          { width: 2px; height: 24px; background: var(--good); margin-left: 5px; }
.status-line-pending[b-jypwz2mebo]  { background: var(--border-strong); }

.total-row td[b-jypwz2mebo]         { border-top: 2px solid var(--border-strong); padding-top: 10px; }
/* _content/CustomerPortal.Web/Components/Pages/Prototype.razor.rz.scp.css */
/* PROTOTYPE — scoped styles for throwaway prototype page. Delete with Prototype.razor. */

/* Comment thread */
.proto-comment[b-hyagfox6u1] {
    padding: 16px 0;
}
.proto-comment-head[b-hyagfox6u1] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.proto-comment-body[b-hyagfox6u1] {
    font-size: 14px;
    line-height: 1.65;
    color: var(--text);
    padding-left: 36px;
}
.proto-comment-mine .proto-comment-body[b-hyagfox6u1] {
    background: var(--surface-2);
    border-radius: 10px;
    padding: 12px 16px 12px 36px;
    border: 1px solid var(--border);
}
.proto-comment-divider[b-hyagfox6u1] {
    height: 1px;
    background: var(--border);
}

/* Vertical status timeline */
.proto-status-step[b-hyagfox6u1] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 4px 0;
}
.proto-status-dot[b-hyagfox6u1] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 4px;
    flex: 0 0 auto;
}
.proto-status-done .proto-status-dot[b-hyagfox6u1] {
    background: var(--good);
}
.proto-status-current .proto-status-dot[b-hyagfox6u1] {
    background: var(--routine);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}
.proto-status-pending .proto-status-dot[b-hyagfox6u1] {
    background: var(--border-strong);
}
.proto-status-line[b-hyagfox6u1] {
    width: 2px;
    height: 24px;
    background: var(--good);
    margin-left: 5px;
}
.proto-status-line-pending[b-hyagfox6u1] {
    background: var(--border-strong);
    border-style: none;
}

/* Dashboard grid */
.proto-dashboard[b-hyagfox6u1] {
    /* wrapper for dashboard content */
}
.proto-dash-grid[b-hyagfox6u1] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.proto-dash-card[b-hyagfox6u1] {
    display: flex;
    flex-direction: column;
    min-height: 260px;
}

@media (max-width: 1024px) {
    .proto-dash-grid[b-hyagfox6u1] {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 720px) {
    .proto-dash-grid[b-hyagfox6u1] {
        grid-template-columns: 1fr;
    }
}
/* _content/CustomerPortal.Web/Components/Pages/SupportDetail.razor.rz.scp.css */
/* Comment thread */
.comment[b-xewoy61mw9]              { padding: 16px 0; }
.comment-head[b-xewoy61mw9]         { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.comment-body[b-xewoy61mw9]         { font-size: 14px; line-height: 1.65; color: var(--text); padding-left: 36px; }
.comment-mine .comment-body[b-xewoy61mw9] {
    background: var(--surface-2);
    border-radius: 10px;
    padding: 12px 16px 12px 36px;
    border: 1px solid var(--border);
}
.comment-divider[b-xewoy61mw9]      { height: 1px; background: var(--border); }

/* Attachment links under comments */
.comment-attachments[b-xewoy61mw9]  { padding-left: 36px; margin-top: 8px; display: flex; flex-direction: column; gap: 4px; }
.attachment-link[b-xewoy61mw9] {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--routine);
    text-decoration: none;
    font-weight: 500;
}
.attachment-link:hover[b-xewoy61mw9] { text-decoration: underline; }
.attachment-size[b-xewoy61mw9]      { color: var(--text-faint); font-weight: 400; }

/* Comment avatars */
.avatar[b-xewoy61mw9] {
    width: 28px; height: 28px;
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 11px; font-weight: 700;
    color: #fff;
    flex: 0 0 auto;
}
.avatar-neutral[b-xewoy61mw9]  { background: var(--border-strong); }
.avatar-customer[b-xewoy61mw9] { background: linear-gradient(135deg, #2563eb, #1e40af); }

/* Vertical status timeline */
.status-step[b-xewoy61mw9]          { display: flex; align-items: flex-start; gap: 12px; padding: 4px 0; }
.status-dot[b-xewoy61mw9]           { width: 12px; height: 12px; border-radius: 50%; margin-top: 4px; flex: 0 0 auto; }
.status-done .status-dot[b-xewoy61mw9]    { background: var(--good); }
.status-current .status-dot[b-xewoy61mw9] { background: var(--routine); box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15); }
.status-pending .status-dot[b-xewoy61mw9] { background: var(--border-strong); }
.status-line[b-xewoy61mw9]          { width: 2px; height: 24px; background: var(--good); margin-left: 5px; }
.status-line-pending[b-xewoy61mw9]  { background: var(--border-strong); }

/* Radio options (close/escalate forms) */
.radio-option[b-xewoy61mw9] {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    padding: 8px 0;
}
.radio-option input[type="radio"][b-xewoy61mw9] {
    margin-top: 4px;
    flex: 0 0 auto;
}

/* Watcher section */
.watcher-list[b-xewoy61mw9]         { display: flex; flex-direction: column; gap: 6px; margin-bottom: 8px; }
.watcher-item[b-xewoy61mw9]         { display: flex; align-items: center; gap: 6px; color: var(--text); }
.btn-link[b-xewoy61mw9] {
    background: none;
    border: none;
    color: var(--routine);
    cursor: pointer;
    padding: 0;
    font-weight: 600;
    text-decoration: none;
}
.btn-link:hover[b-xewoy61mw9]       { text-decoration: underline; }

/* Reply box */
.reply-textarea[b-xewoy61mw9] {
    width: 100%;
    resize: vertical;
    min-height: 80px;
    font-size: 14px;
    line-height: 1.6;
}
/* _content/CustomerPortal.Web/Components/Shared/FeedbackButton.razor.rz.scp.css */
/* Callout nudge bubble */
.feedback-callout[b-oeushjplxm] {
    position: fixed;
    bottom: 84px;
    right: 24px;
    background: var(--bg-surface, #fff);
    border: 1px solid var(--border, #e2e2e2);
    border-radius: 10px;
    padding: 12px 36px 12px 16px;
    font-size: 14px;
    color: var(--text-primary, #1a1a1a);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    z-index: 99;
    max-width: 260px;
    animation: feedback-callout-in-b-oeushjplxm 0.35s ease-out;
}

.feedback-callout-arrow[b-oeushjplxm] {
    position: absolute;
    bottom: -7px;
    right: 18px;
    width: 12px;
    height: 12px;
    background: var(--bg-surface, #fff);
    border-right: 1px solid var(--border, #e2e2e2);
    border-bottom: 1px solid var(--border, #e2e2e2);
    transform: rotate(45deg);
}

.feedback-callout-close[b-oeushjplxm] {
    position: absolute;
    top: 6px;
    right: 6px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted, #999);
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.feedback-callout-close:hover[b-oeushjplxm] {
    color: var(--text-primary, #1a1a1a);
    background: var(--bg-hover, rgba(0, 0, 0, 0.06));
}

@keyframes feedback-callout-in-b-oeushjplxm {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback-fab[b-oeushjplxm] {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent, #2563eb);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 100;
    transition: background 0.15s, transform 0.15s;
}

.feedback-fab:hover[b-oeushjplxm] {
    background: var(--accent-hover, #1d4ed8);
    transform: scale(1.05);
}

.feedback-backdrop[b-oeushjplxm] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 300;
}

.feedback-modal[b-oeushjplxm] {
    background: var(--bg-surface, #fff);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
    width: 460px;
    max-width: 92vw;
    max-height: 90vh;
    overflow-y: auto;
}

.feedback-modal-header[b-oeushjplxm] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border, #e2e2e2);
}

.feedback-modal-header h3[b-oeushjplxm] {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.feedback-close[b-oeushjplxm] {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted, #666);
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
}

.feedback-close:hover[b-oeushjplxm] {
    background: var(--bg-hover, rgba(0, 0, 0, 0.06));
}

.feedback-modal-body[b-oeushjplxm] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feedback-modal-footer[b-oeushjplxm] {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px 20px;
    border-top: 1px solid var(--border, #e2e2e2);
}

.feedback-error[b-oeushjplxm] {
    color: #dc2626;
    font-size: 13px;
}

.feedback-toast[b-oeushjplxm] {
    position: fixed;
    bottom: 84px;
    right: 24px;
    background: var(--bg-surface, #fff);
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-primary, #1a1a1a);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 400;
    animation: feedback-toast-in-b-oeushjplxm 0.25s ease-out;
}

.feedback-toast-error[b-oeushjplxm] {
    border-color: #fecaca;
}

.feedback-toast-warning[b-oeushjplxm] {
    border-color: #fde68a;
}

@keyframes feedback-toast-in-b-oeushjplxm {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feedback-optional[b-oeushjplxm] {
    font-weight: 400;
    color: var(--text-muted, #666);
    font-size: 13px;
}

.feedback-file-hint[b-oeushjplxm] {
    font-size: 12px;
    color: var(--text-muted, #999);
    margin-top: 4px;
}

.feedback-file-list[b-oeushjplxm] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.feedback-file-item[b-oeushjplxm] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 8px;
    background: var(--bg-hover, rgba(0, 0, 0, 0.03));
    border-radius: 6px;
    font-size: 13px;
}

.feedback-file-name[b-oeushjplxm] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
}

.feedback-file-remove[b-oeushjplxm] {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted, #666);
    padding: 2px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 8px;
}

.feedback-file-remove:hover[b-oeushjplxm] {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}
/* _content/CustomerPortal.Web/Components/Shared/FileUpload.razor.rz.scp.css */
.optional-label[b-ymihhv28at] {
    font-weight: 400;
    color: var(--text-faint);
}

.upload-zone[b-ymihhv28at] {
    position: relative;
    padding: 20px;
    border: 2px dashed var(--border-strong);
    border-radius: 10px;
    text-align: center;
    color: var(--text-faint);
    font-size: 13px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: border-color 0.15s, background 0.15s;
}

.upload-zone:hover[b-ymihhv28at],
.upload-zone.dragover[b-ymihhv28at] {
    border-color: var(--accent);
    background: var(--surface-2);
}

.upload-hint[b-ymihhv28at] {
    font-size: 11px;
    color: var(--text-faint);
    opacity: 0.8;
}

.file-preview[b-ymihhv28at] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    background: var(--surface-2);
    font-size: 13px;
}

.file-info[b-ymihhv28at] {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    color: var(--text);
}

.file-name[b-ymihhv28at] {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-size[b-ymihhv28at] {
    color: var(--text-faint);
    flex-shrink: 0;
}

.file-remove[b-ymihhv28at] {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 4px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    transition: color 0.15s, background 0.15s;
}

.file-remove:hover[b-ymihhv28at] {
    color: var(--urgent);
    background: rgba(239, 68, 68, 0.08);
}

[b-ymihhv28at] .upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.label[b-ymihhv28at] {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.field-error[b-ymihhv28at] {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--urgent, #ef4444);
}
