@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';
@import '_content/NoCode.Platform.Designer/NoCode.Platform.Designer.x790kzljjk.bundle.scp.css';

/* _content/NoCode.Platform.RuntimeWeb/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-7ztxh6g0mf] {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    margin-bottom:20px;
}

main[b-7ztxh6g0mf] {
    flex: 1;
    background: #f0f2f5;
    min-height: 100vh;
    min-width: 0;
}

.sidebar[b-7ztxh6g0mf] {
    background: #1e293b;
}

/* ─── Top Bar ─── */
.top-bar[b-7ztxh6g0mf] {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    height: 3.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

.top-bar-left[b-7ztxh6g0mf] {
    display: flex;
    align-items: center;
}

.top-bar-right[b-7ztxh6g0mf] {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: .25rem;
    overflow: visible;
}

/* ─── User area ─── */
.top-bar-user[b-7ztxh6g0mf] {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.user-avatar[b-7ztxh6g0mf] {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, #4e73df, #224abe);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.user-info[b-7ztxh6g0mf] {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.user-name[b-7ztxh6g0mf] {
    font-size: .82rem;
    font-weight: 600;
    color: #1a1d21;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 140px;
}

.user-role[b-7ztxh6g0mf] {
    font-size: .68rem;
    color: #858d97;
}

.btn-logout[b-7ztxh6g0mf] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #858d97;
    text-decoration: none;
    transition: all .15s;
    margin-left: .25rem;
}

.btn-logout:hover[b-7ztxh6g0mf] {
    background: #fee2e2;
    color: #dc2626;
}

.btn-profile[b-7ztxh6g0mf] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #858d97;
    text-decoration: none;
    transition: all .15s;
}

.btn-profile:hover[b-7ztxh6g0mf] {
    background: #e0e7ff;
    color: #4f46e5;
}

/* ─── Notification Bell ─── */
.notification-bell[b-7ztxh6g0mf] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: #64748b;
    text-decoration: none;
    transition: all .15s;
    margin-right: .75rem;
    font-size: 1.15rem;
}

.notification-bell:hover[b-7ztxh6g0mf] {
    background: #f1f5f9;
    color: #3b82f6;
}

.notification-badge[b-7ztxh6g0mf] {
    position: absolute;
    top: 2px;
    right: 1px;
    background: #ef4444;
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
    animation: notif-pulse-b-7ztxh6g0mf .6s ease-out;
}

@keyframes notif-pulse-b-7ztxh6g0mf {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); opacity: 1; }
}

/* ─── Mobile Menu Button ─── */
.mobile-menu-btn[b-7ztxh6g0mf] {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #475569;
    padding: .25rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all .15s;
}

.mobile-menu-btn:hover[b-7ztxh6g0mf] {
    background: #f1f5f9;
    color: #1e293b;
}

/* ─── Sidebar Overlay ─── */
.sidebar-overlay[b-7ztxh6g0mf] {
    display: none;
}

/* ─── Content ─── */
.content[b-7ztxh6g0mf] {
    padding-top: 1.5rem;
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 640.98px) {
    .mobile-menu-btn[b-7ztxh6g0mf] {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sidebar[b-7ztxh6g0mf] {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 260px;
        z-index: 1050;
        transform: translateX(-100%);
        transition: transform .25s ease;
        overflow-y: auto;
    }

    .sidebar.open[b-7ztxh6g0mf] {
        transform: translateX(0);
    }

    .sidebar-overlay[b-7ztxh6g0mf] {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.4);
        z-index: 1040;
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
    }

    .sidebar-overlay.show[b-7ztxh6g0mf] {
        opacity: 1;
        pointer-events: auto;
    }

    .top-bar[b-7ztxh6g0mf] {
        justify-content: space-between;
        padding: 0 .75rem;
    }

    .user-info[b-7ztxh6g0mf] {
        display: none;
    }

    .content[b-7ztxh6g0mf] {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

@media (min-width: 641px) {
    .page[b-7ztxh6g0mf] {
        flex-direction: row;
    }

    .sidebar[b-7ztxh6g0mf] {
        width: 240px;
        position: sticky;
        top: 0;
        flex-shrink: 0;
    }

    .top-bar[b-7ztxh6g0mf] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-bar[b-7ztxh6g0mf], article[b-7ztxh6g0mf] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-7ztxh6g0mf] {
    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-7ztxh6g0mf] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/NoCode.Platform.RuntimeWeb/Components/Layout/NavMenu.razor.rz.scp.css */
/* ─── Brand ─── */
.sidebar-brand[b-63g4hetqd4] {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand-icon[b-63g4hetqd4] {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    flex-shrink: 0;
}

.brand-text[b-63g4hetqd4] {
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: .01em;
    white-space: nowrap;
}

/* ─── Section Labels ─── */
.nav-section-label[b-63g4hetqd4] {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: rgba(255,255,255,.35);
    padding: .9rem 1.5rem .35rem;
    text-transform: uppercase;
}

/* ─── Scrollable ─── */
.nav-scrollable[b-63g4hetqd4] {
    display: block;
    height: calc(100vh - 3.75rem);
    overflow-y: auto;
    padding-top: .25rem;
}

.nav-scrollable[b-63g4hetqd4]::-webkit-scrollbar {
    width: 3px;
}
.nav-scrollable[b-63g4hetqd4]::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.15);
    border-radius: 3px;
}
.nav-item[b-63g4hetqd4] {
    font-size: 0.86rem;
    padding-bottom: 2px;
}

    .nav-item:first-of-type[b-63g4hetqd4] {
        padding-top: 0.25rem;
    }

    .nav-item:last-of-type[b-63g4hetqd4] {
        padding-bottom: 0.5rem;
    }

    .nav-item[b-63g4hetqd4]  .nav-link {
        color: rgba(255,255,255,.65);
        background: none;
        border: none;
        border-radius: 8px;
        height: 2.6rem;
        display: flex;
        align-items: center;
        line-height: 2.6rem;
        width: 100%;
        gap: .65rem;
        padding: 0 .75rem;
        transition: all .15s ease;
        font-weight: 400;
        text-decoration: none;
    }

.nav-item[b-63g4hetqd4]  a.active {
    background: rgba(255,255,255,.12);
    color: #fff;
    font-weight: 500;
}

.nav-item[b-63g4hetqd4]  .nav-link:hover {
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.9);
}

/* ─── Nav Icon ─── */
.nav-icon[b-63g4hetqd4] {
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    opacity: .8;
}

.nav-item[b-63g4hetqd4]  a.active .nav-icon {
    opacity: 1;
}

.nav-text[b-63g4hetqd4] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-badge-inactive[b-63g4hetqd4] {
    margin-left: auto;
    font-size: .58rem;
    padding: 1px 6px;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.5);
    border-radius: 8px;
    font-weight: 600;
    flex-shrink: 0;
}

/* ─── Quick Links ─── */
.quick-link-toggle-btn[b-63g4hetqd4] {
    background: none;
    border: none;
    color: rgba(255,255,255,.35);
    font-size: .6rem;
    cursor: pointer;
    padding: 0 4px;
    margin-left: 4px;
    line-height: 1;
    transition: color .15s;
}
.quick-link-toggle-btn:hover[b-63g4hetqd4] {
    color: rgba(255,255,255,.7);
}

.nav-item[b-63g4hetqd4] {
    position: relative;
}

.quick-link-add-btn[b-63g4hetqd4] {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,.2);
    font-size: .7rem;
    cursor: pointer;
    padding: 2px 4px;
    opacity: 0;
    transition: opacity .15s, color .15s;
    z-index: 1;
}
.nav-item:hover .quick-link-add-btn[b-63g4hetqd4] {
    opacity: 1;
}
.quick-link-add-btn:hover[b-63g4hetqd4] {
    color: #ffc107;
}
.quick-link-add-btn .bi-star-fill[b-63g4hetqd4] {
    color: #ffc107;
}
.nav-item:hover .quick-link-add-btn .bi-star-fill[b-63g4hetqd4] {
    opacity: 1;
}

.quick-link-item[b-63g4hetqd4] {
    position: relative;
}
.quick-link-remove-btn[b-63g4hetqd4] {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255,255,255,.35);
    font-size: .6rem;
    cursor: pointer;
    padding: 2px 4px;
    transition: color .15s;
}
.quick-link-remove-btn:hover[b-63g4hetqd4] {
    color: #dc3545;
}

@media (min-width: 641px) {
    .nav-scrollable[b-63g4hetqd4] {
        height: calc(100vh - 3.75rem);
        overflow-y: auto;
        padding-top: .25rem;
    }

    .nav-scrollable[b-63g4hetqd4]::-webkit-scrollbar {
        width: 3px;
    }
    .nav-scrollable[b-63g4hetqd4]::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,.15);
        border-radius: 3px;
    }
}

/* _content/NoCode.Platform.RuntimeWeb/Components/Pages/DashboardViewerPage.razor.rz.scp.css */
.dv-container[b-o97ukv0k07] {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 32px;
}

.dv-loading[b-o97ukv0k07],
.dv-empty[b-o97ukv0k07] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    gap: 12px;
    color: #64748b;
}

.dv-empty h4[b-o97ukv0k07] { color: #1e293b; margin: 0; }
.dv-empty p[b-o97ukv0k07] { margin: 0; font-size: .9rem; }

.dv-breadcrumb[b-o97ukv0k07] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

.dv-breadcrumb a[b-o97ukv0k07] {
    color: #64748b;
    text-decoration: none;
}

.dv-breadcrumb a:hover[b-o97ukv0k07] { color: #0d6efd; }
.dv-sep[b-o97ukv0k07] { font-size: .65rem; color: #cbd5e1; }

.dv-header[b-o97ukv0k07] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.dv-header-left[b-o97ukv0k07] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.dv-header-icon[b-o97ukv0k07] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #17a2b8, #0d6efd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.dv-title[b-o97ukv0k07] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.dv-desc[b-o97ukv0k07] {
    font-size: .82rem;
    color: #64748b;
    margin: 4px 0 0;
}

.dv-header-right[b-o97ukv0k07] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dv-meta[b-o97ukv0k07] {
    font-size: .78rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
}

.dv-grid[b-o97ukv0k07] {
    display: grid;
    gap: 16px;
    grid-auto-rows: minmax(300px, auto);
}

.dv-widget[b-o97ukv0k07] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.dv-widget-header[b-o97ukv0k07] {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #f1f5f9;
    font-size: .8rem;
    font-weight: 600;
    color: #334155;
    gap: 4px;
}

.dv-widget-header i[b-o97ukv0k07] { color: #4e73df; }

.dv-widget-body[b-o97ukv0k07] {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    flex-direction: column;
}

.dv-no-widgets[b-o97ukv0k07] {
    text-align: center;
    padding: 60px;
    color: #94a3b8;
}

.dv-no-widgets p[b-o97ukv0k07] {
    margin: 8px 0 0;
    font-size: .85rem;
}
/* _content/NoCode.Platform.RuntimeWeb/Components/Pages/ReportsPage.razor.rz.scp.css */
.report-card[b-bm9vpjfslq] {
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    border: 1px solid #e9ecef;
}

.report-card:hover[b-bm9vpjfslq] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.report-icon[b-bm9vpjfslq] {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.report-icon.dashboard-icon[b-bm9vpjfslq] {
    background: linear-gradient(135deg, #17a2b8 0%, #0d6efd 100%);
}
/* _content/NoCode.Platform.RuntimeWeb/Components/Pages/ReportViewerPage.razor.rz.scp.css */
.rv-container[b-km6434lfb4] {
    padding:0px;
}

.rv-loading[b-km6434lfb4],
.rv-empty[b-km6434lfb4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    gap: 12px;
    color: #64748b;
}

.rv-empty h4[b-km6434lfb4] { color: #1e293b; margin: 0; }
.rv-empty p[b-km6434lfb4] { margin: 0; font-size: .9rem; }

.rv-breadcrumb[b-km6434lfb4] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

.rv-breadcrumb a[b-km6434lfb4] {
    color: #64748b;
    text-decoration: none;
}

.rv-breadcrumb a:hover[b-km6434lfb4] { color: #4f46e5; }
.rv-sep[b-km6434lfb4] { font-size: .65rem; color: #cbd5e1; }

.rv-header[b-km6434lfb4] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.rv-header-left[b-km6434lfb4] {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rv-header-icon[b-km6434lfb4] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.rv-title[b-km6434lfb4] {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.rv-desc[b-km6434lfb4] {
    font-size: .82rem;
    color: #64748b;
    margin: 4px 0 0;
}

.rv-header-right[b-km6434lfb4] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rv-meta[b-km6434lfb4] {
    font-size: .78rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
}

.rv-tabs[b-km6434lfb4] {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0;
}

.rv-tab[b-km6434lfb4] {
    background: none;
    border: none;
    padding: 8px 16px;
    font-size: .82rem;
    color: #64748b;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all .15s;
}

.rv-tab:hover[b-km6434lfb4] { color: #4f46e5; }

.rv-tab.active[b-km6434lfb4] {
    color: #4f46e5;
    border-bottom-color: #4f46e5;
    font-weight: 600;
}

.rv-grid[b-km6434lfb4] {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    grid-auto-rows: minmax(300px, auto);
}

.rv-viz[b-km6434lfb4] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.rv-viz-header[b-km6434lfb4] {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #f1f5f9;
    font-size: .8rem;
    font-weight: 600;
    color: #334155;
    gap: 4px;
}

.rv-viz-header i[b-km6434lfb4] { color: #8b5cf6; }

.rv-row-count[b-km6434lfb4] {
    margin-left: auto;
    font-weight: 400;
    font-size: .7rem;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
}

.rv-viz-body[b-km6434lfb4] {
    padding: 0;
    min-height: 250px;
    overflow: auto;
    display: flex;
    flex-direction: column;
}

.rv-viz-error[b-km6434lfb4] {
    padding: 16px;
    font-size: .78rem;
    color: #dc2626;
    text-align: center;
}

.rv-viz-loading[b-km6434lfb4] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
    font-size: .8rem;
    color: #64748b;
}

.rv-viz-placeholder[b-km6434lfb4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    color: #94a3b8;
    font-size: .78rem;
}

.rv-viz-placeholder p[b-km6434lfb4] { margin: 8px 0 0; }

.rv-data-table[b-km6434lfb4] {
    font-size: .72rem;
    width: 100%;
}

.rv-data-row[b-km6434lfb4] {
    display: flex;
    border-bottom: 1px solid #f1f5f9;
}

.rv-data-row span[b-km6434lfb4] {
    flex: 1;
    padding: 6px 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.rv-data-header[b-km6434lfb4] {
    background: #f8fafc;
    font-weight: 600;
    color: #475569;
    position: sticky;
    top: 0;
}

.rv-data-more[b-km6434lfb4] {
    text-align: center;
    padding: 6px;
    font-size: .7rem;
    color: #94a3b8;
}

.rv-no-viz[b-km6434lfb4] {
    text-align: center;
    padding: 60px;
    color: #94a3b8;
}

.rv-no-viz p[b-km6434lfb4] {
    margin: 8px 0 0;
    font-size: .85rem;
}

/* Export Toolbar */
.rv-toolbar[b-km6434lfb4] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 10px 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.rv-toolbar-btn[b-km6434lfb4] {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 7px 14px;
    font-size: .8rem;
    font-weight: 500;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 7px;
    cursor: pointer;
    transition: all .15s;
}

.rv-toolbar-btn:hover[b-km6434lfb4] {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #1e293b;
}

.rv-toolbar-btn:disabled[b-km6434lfb4] {
    opacity: .6;
    cursor: not-allowed;
}

.rv-toolbar-btn-excel:hover[b-km6434lfb4] {
    color: #16a34a;
    border-color: #86efac;
    background: #f0fdf4;
}

.rv-toolbar-btn-pdf:hover[b-km6434lfb4] {
    color: #dc2626;
    border-color: #fca5a5;
    background: #fef2f2;
}

/* Print styles */
@media print {
    .no-print[b-km6434lfb4],
    .rv-breadcrumb[b-km6434lfb4],
    .rv-tabs[b-km6434lfb4] {
        display: none !important;
    }

    .rv-container[b-km6434lfb4] {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }

    .rv-header[b-km6434lfb4] {
        box-shadow: none;
        border: none;
        padding: 10px 0;
        margin-bottom: 12px;
    }

    .rv-grid[b-km6434lfb4] {
        display: block;
    }

    .rv-viz[b-km6434lfb4] {
        box-shadow: none;
        border: 1px solid #ccc;
        page-break-inside: avoid;
        margin-bottom: 16px;
    }
}
/* _content/NoCode.Platform.RuntimeWeb/Components/Shared/NotificationToast.razor.rz.scp.css */
/* ── Toast Container ── */
.notif-toast-container[b-k635jjqked] {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 380px;
    width: 100%;
    pointer-events: none;
}

/* ── Toast Card ── */
.notif-toast[b-k635jjqked] {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .14);
    pointer-events: auto;
    overflow: hidden;
    border-left: 4px solid #6c757d;
    opacity: 0;
    transform: translateX(100%);
}

/* ── Slide-in ── */
.notif-toast-show[b-k635jjqked] {
    animation: notifSlideIn-b-k635jjqked .35s ease forwards;
}

@keyframes notifSlideIn-b-k635jjqked {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ── Slide-out ── */
.notif-toast-hide[b-k635jjqked] {
    animation: notifSlideOut-b-k635jjqked .4s ease forwards;
}

@keyframes notifSlideOut-b-k635jjqked {
    to {
        opacity: 0;
        transform: translateX(120%);
    }
}

/* ── Type colours ── */
.notif-toast-info[b-k635jjqked] {
    border-left-color: #0d6efd;
}

.notif-toast-success[b-k635jjqked] {
    border-left-color: #198754;
}

.notif-toast-error[b-k635jjqked] {
    border-left-color: #dc3545;
}

.notif-toast-warning[b-k635jjqked] {
    border-left-color: #ffc107;
}

/* ── Icon ── */
.notif-toast-icon[b-k635jjqked] {
    flex-shrink: 0;
    font-size: 1.3rem;
    line-height: 1;
    margin-top: 2px;
}

.notif-toast-info .notif-toast-icon[b-k635jjqked] {
    color: #0d6efd;
}

.notif-toast-success .notif-toast-icon[b-k635jjqked] {
    color: #198754;
}

.notif-toast-error .notif-toast-icon[b-k635jjqked] {
    color: #dc3545;
}

.notif-toast-warning .notif-toast-icon[b-k635jjqked] {
    color: #ffc107;
}

/* ── Body ── */
.notif-toast-body[b-k635jjqked] {
    flex: 1;
    min-width: 0;
}

.notif-toast-title[b-k635jjqked] {
    font-weight: 600;
    font-size: .9rem;
    color: #1e1e1e;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notif-toast-message[b-k635jjqked] {
    font-size: .82rem;
    color: #555;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── Close button ── */
.notif-toast-close[b-k635jjqked] {
    flex-shrink: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    font-size: 1.1rem;
    padding: 0;
    line-height: 1;
    transition: color .15s;
}

.notif-toast-close:hover[b-k635jjqked] {
    color: #333;
}
