@import '_content/Blazor.SignaturePad/Blazor.SignaturePad.g22u5lm4z9.bundle.scp.css';

/* /Components/Charting/SocDmeSection.razor.rz.scp.css */
/* SocDmeSection.razor.css */

.dme-section[b-zbl3bxwabx] {
    background: #fafafa;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px 20px;
    margin-top: 20px;
}

.dme-section-header[b-zbl3bxwabx] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    flex-wrap: wrap;
    gap: 10px;
}

.dme-section-title[b-zbl3bxwabx] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: .95rem;
    color: #0f172a;
}

.dme-loading[b-zbl3bxwabx] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: .875rem;
    padding: 8px 0;
}

.dme-empty[b-zbl3bxwabx] {
    color: #94a3b8;
    font-size: .875rem;
    text-align: center;
    padding: 16px;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
}

.dme-list[b-zbl3bxwabx] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 4px;
}

.dme-card[b-zbl3bxwabx] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: box-shadow .15s;
}
.dme-card:hover[b-zbl3bxwabx] { box-shadow: 0 2px 8px rgba(0,0,0,.07); }
.dme-card.urgent[b-zbl3bxwabx] { border-left: 4px solid #ef4444; }

.dme-card-left[b-zbl3bxwabx]  { flex: 1; min-width: 0; }
.dme-card-right[b-zbl3bxwabx] { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.dme-equipment[b-zbl3bxwabx] {
    font-weight: 600;
    color: #1e293b;
    font-size: .875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dme-hcpcs[b-zbl3bxwabx] {
    font-size: .75rem;
    color: #94a3b8;
    font-family: monospace;
    margin-top: 1px;
}

.dme-card-actions[b-zbl3bxwabx] {
    display: flex;
    gap: 2px;
}

/* Form */
.dme-form[b-zbl3bxwabx] {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 18px;
    margin-top: 12px;
}

.dme-form-title[b-zbl3bxwabx] {
    font-size: .9rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 14px;
}

.dme-form-actions[b-zbl3bxwabx] {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    align-items: center;
}

/* Inline toast (replaces MudSnackbar) */
.dme-toast-inline[b-zbl3bxwabx] {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 7px;
    font-size: .875rem;
    font-weight: 500;
}
.dme-toast-inline.ok[b-zbl3bxwabx]  { background: #dcfce7; color: #166534; }
.dme-toast-inline.err[b-zbl3bxwabx] { background: #fee2e2; color: #991b1b; }
/* /Components/Layout/AdminLayout.razor.rz.scp.css */
/* 🌙 Dark Gradient Background for the Sidebar */
.rz-sidebar[b-b832s5pabd] {
    background: linear-gradient(135deg, #1a1a1a, #292929);
    color: white;
    transition: width 0.3s ease-in-out;
}

    /* 📌 Sidebar when collapsed */
    .rz-sidebar.collapsed[b-b832s5pabd] {
        width: 50px !important;
    }

/* 📌 Sidebar Navigation Items */
.rz-navigation-item[b-b832s5pabd] {
    color: white !important;
    transition: background 0.3s, color 0.3s;
}

/* 📌 Highlight Active Menu Item */
.rz-navigation-item-active[b-b832s5pabd] {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-radius: 5px;
}

/* 📌 Sidebar Toggle Button */
.rz-sidebar-toggle[b-b832s5pabd] {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
}

    .rz-sidebar-toggle:hover[b-b832s5pabd] {
        background-color: rgba(255, 0, 0, 0.4); /* Red hover for toggle button */
    }

/* 📌 Sidebar Item Hover Effect (Lighter Gray) */
.rz-navigation-item:hover[b-b832s5pabd] {
    background-color: rgba(211, 211, 211, 0.3) !important; /* Light Gray */
    color: #ffffff !important;
}

/* 📌 Show Tooltips when Sidebar is Collapsed */
.rz-sidebar.collapsed .rz-navigation-item[b-b832s5pabd] {
    position: relative;
}

    .rz-sidebar.collapsed .rz-navigation-item:hover[b-b832s5pabd]::after {
        content: attr(data-tooltip);
        position: absolute;
        left: 60px;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(128, 128, 128, 0.8);
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        white-space: nowrap;
        z-index: 10;
    }

/* 🌙 Dark Background for the Entire Page */
body[b-b832s5pabd] {
    background: #121212;
    color: white;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* Styles moved inline to MainLayout.razor */
/* /Components/Layout/NavBar.razor.rz.scp.css */
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* =============================================
   Sidebar Navigation — Crisp Dark Pro Theme
   (No CSS variables — direct values for Blazor scoped CSS compatibility)
   ============================================= */

/* ── Wrapper ── */
.sidebar-wrapper[b-vcb5udw6vq] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #0f1c2e !important;
    width: 256px;
    overflow: hidden;
    border-right: 1px solid rgba(255,255,255,0.07);
    color: #e2eaf6;
}

/* ── Brand ── */
.sidebar-brand[b-vcb5udw6vq] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 16px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-shrink: 0;
    background: rgba(0,0,0,0.20) !important;
}

.brand-icon[b-vcb5udw6vq] {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6) !important;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white !important;
    flex-shrink: 0;
    box-shadow: 0 0 14px rgba(59,130,246,0.45);
}

.brand-name[b-vcb5udw6vq] {
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: 0.3px;
}

/* ── Nav Container ── */
.sidebar-nav[b-vcb5udw6vq] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 0 12px;
    display: flex;
    flex-direction: column;
    background: #0f1c2e !important;
}

.sidebar-nav[b-vcb5udw6vq]::-webkit-scrollbar { width: 3px; }
.sidebar-nav[b-vcb5udw6vq]::-webkit-scrollbar-track { background: transparent; }
.sidebar-nav[b-vcb5udw6vq]::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.10); border-radius: 4px; }

/* ── Section ── */
.nav-section[b-vcb5udw6vq] {
    padding: 0 10px 4px;
}

.nav-section-label[b-vcb5udw6vq] {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: #7aafd4 !important;
    padding: 10px 8px 4px;
    margin: 0;
}

/* ── Top-level links ── */
.sidebar-link[b-vcb5udw6vq] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 7px;
    color: #e8f0fc !important;
    text-decoration: none !important;
    font-size: 0.925rem;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
    width: 100%;
    border: none;
    background: none !important;
    cursor: pointer;
    line-height: 1.2;
}

.sidebar-link i[b-vcb5udw6vq] {
    font-size: 1rem;
    width: 18px;
    min-width: 18px;
    text-align: center;
    flex-shrink: 0;
    color: #8ab8e0 !important;
    transition: color 0.15s ease;
}

.sidebar-link:hover[b-vcb5udw6vq] {
    background: rgba(37,99,235,0.14) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}
.sidebar-link:hover i[b-vcb5udw6vq] { color: #93c5fd !important; }

.sidebar-link.active[b-vcb5udw6vq] {
    background: rgba(37,99,235,0.22) !important;
    color: #ffffff !important;
    border-left: 3px solid #60a5fa;
    padding-left: 7px;
    font-weight: 600;
}
.sidebar-link.active i[b-vcb5udw6vq] { color: #60a5fa !important; }

/* ── Group Toggle ── */
.sidebar-group[b-vcb5udw6vq] { margin-bottom: 1px; }

.sidebar-group-toggle[b-vcb5udw6vq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 10px;
    border-radius: 7px;
    color: #e8f0fc !important;
    font-size: 0.925rem;
    font-weight: 600;
    background: none !important;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background 0.15s ease;
}

.sidebar-group-toggle:hover[b-vcb5udw6vq] {
    background: rgba(37,99,235,0.14) !important;
    color: #ffffff !important;
}

.sidebar-group-toggle.open[b-vcb5udw6vq] {
    background: rgba(37,99,235,0.22) !important;
    color: #ffffff !important;
}

.group-left[b-vcb5udw6vq] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.group-left i[b-vcb5udw6vq] {
    font-size: 1rem;
    width: 18px;
    min-width: 18px;
    text-align: center;
    color: #8ab8e0 !important;
    transition: color 0.15s ease;
}

.sidebar-group-toggle:hover .group-left i[b-vcb5udw6vq],
.sidebar-group-toggle.open .group-left i[b-vcb5udw6vq] { color: #93c5fd !important; }

.toggle-arrow[b-vcb5udw6vq] {
    font-size: 0.65rem !important;
    width: auto !important;
    transition: transform 0.15s ease !important;
    color: #4a6a8a !important;
}
.sidebar-group-toggle.open .toggle-arrow[b-vcb5udw6vq] {
    transform: rotate(90deg);
    color: #93c5fd !important;
}

/* ── Sub Items ── */
.sidebar-group-items[b-vcb5udw6vq] {
    display: none;
    flex-direction: column;
    gap: 1px;
    padding: 3px 0 3px 12px;
    border-left: 2px solid rgba(96,165,250,0.18);
    margin-left: 18px;
    margin-top: 2px;
    margin-bottom: 2px;
}
.sidebar-group-items.show[b-vcb5udw6vq] { display: flex; }

.sidebar-sub-link[b-vcb5udw6vq] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 6px;
    color: #ccdff5 !important;
    text-decoration: none !important;
    font-size: 0.89rem;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}

.sidebar-sub-link i[b-vcb5udw6vq] {
    font-size: 0.875rem;
    width: 14px;
    min-width: 14px;
    text-align: center;
    flex-shrink: 0;
    color: #7aafd4 !important;
    transition: color 0.15s ease;
}

.sidebar-sub-link:hover[b-vcb5udw6vq] {
    background: rgba(37,99,235,0.14) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}
.sidebar-sub-link:hover i[b-vcb5udw6vq] { color: #93c5fd !important; }

.sidebar-sub-link.active[b-vcb5udw6vq] {
    color: #93c5fd !important;
    background: rgba(37,99,235,0.22) !important;
    font-weight: 600;
}
.sidebar-sub-link.active i[b-vcb5udw6vq] { color: #93c5fd !important; }

/* ── Footer ── */
.sidebar-footer[b-vcb5udw6vq] {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 10px;
    flex-shrink: 0;
    background: rgba(0,0,0,0.25) !important;
}

.user-info[b-vcb5udw6vq] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px 8px;
}

.user-avatar i[b-vcb5udw6vq] {
    font-size: 1.9rem;
    color: #4a7aaa !important;
}

.user-details[b-vcb5udw6vq] { display: flex; flex-direction: column; overflow: hidden; }

.user-name[b-vcb5udw6vq] {
    font-size: 0.84rem;
    font-weight: 600;
    color: #ffffff !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tenant-id[b-vcb5udw6vq] {
    font-size: 0.72rem;
    color: #7aafd4 !important;
}

.logout-form[b-vcb5udw6vq] { width: 100%; }

.logout-btn[b-vcb5udw6vq] {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 8px 12px;
    border-radius: 7px;
    color: #fca5a5 !important;
    background: rgba(239,68,68,0.07) !important;
    border: 1px solid rgba(239,68,68,0.18);
    font-size: 0.83rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}
.logout-btn i[b-vcb5udw6vq] { font-size: 0.95rem; }
.logout-btn:hover[b-vcb5udw6vq] {
    background: rgba(239,68,68,0.18) !important;
    border-color: rgba(239,68,68,0.45) !important;
    color: #ffffff !important;
}

.login-link[b-vcb5udw6vq] { color: #4ade80 !important; }

@@media (max-width: 768px) {
    .sidebar-wrapper[b-vcb5udw6vq] { width: 256px; height: 100vh; overflow-y: auto; }
    .sidebar-nav[b-vcb5udw6vq] { padding-bottom: 2rem; }
}
/* /Components/Layout/NursSideBar.razor.rz.scp.css */
.static-height-box[b-gumehnam4h] {
    height: 100vh; /* Fixed height */
    width: 280px; /* Width adjusts to content or container */
    background-color: lightblue;
    overflow: hidden; /* Prevents content from overflowing */
    position:  inherit;
   
   
}
/* /Components/Pages/Admin/DmeOrders.razor.rz.scp.css */
/* DmeOrders.razor.css */

/* ── Stats ── */
.dme-stats-row[b-0nub8bhtly] {
    display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px;
}
.dme-stat[b-0nub8bhtly] {
    background: #fff; border-radius: 8px; padding: 10px 16px;
    display: flex; align-items: center; gap: 8px;
    border-left: 3px solid var(--ac);
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.dme-stat-n[b-0nub8bhtly] { font-size: 1.25rem; font-weight: 800; color: var(--ac); }
.dme-stat-l[b-0nub8bhtly] { font-size: .75rem; font-weight: 600; color: #64748b; white-space: nowrap; }

/* ── Toolbar ── */
.dme-toolbar[b-0nub8bhtly] {
    display: flex; gap: 10px; align-items: center; margin-bottom: 18px; flex-wrap: wrap;
}

/* ── Board ── */
.dme-board-loading[b-0nub8bhtly] {
    display: flex; align-items: center; justify-content: center; padding: 60px;
}
.dme-board[b-0nub8bhtly] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
    align-items: start;
}

/* ── Columns ── */
.dme-col[b-0nub8bhtly] { background: #f1f5f9; border-radius: 10px; overflow: hidden; }
.dme-col-header[b-0nub8bhtly] {
    padding: 10px 14px;
    display: flex; justify-content: space-between; align-items: center;
    background: #fff; border-left: 4px solid var(--ac);
}
.dme-col-title[b-0nub8bhtly] { font-size: .85rem; font-weight: 700; color: #0f172a; }
.dme-col-badge[b-0nub8bhtly] {
    background: var(--ac); color: #fff;
    border-radius: 999px; padding: 1px 8px; font-size: .72rem; font-weight: 800;
}
.dme-col-body[b-0nub8bhtly] { padding: 8px; display: flex; flex-direction: column; gap: 7px; min-height: 50px; }
.dme-col-empty[b-0nub8bhtly] { color: #94a3b8; text-align: center; padding: 14px; font-size: .8rem; }

/* ── Cards ── */
.dme-kcard[b-0nub8bhtly] {
    background: #fff; border-radius: 8px; padding: 10px 12px;
    cursor: pointer; border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
    transition: box-shadow .15s, transform .1s;
}
.dme-kcard:hover[b-0nub8bhtly] { box-shadow: 0 4px 14px rgba(0,0,0,.10); transform: translateY(-1px); }
.dme-kcard.urgent[b-0nub8bhtly] { border-top: 3px solid #ef4444; }

.dme-urgent-flag[b-0nub8bhtly] {
    background: #fef2f2; color: #b91c1c;
    font-size: .68rem; font-weight: 800; letter-spacing: .06em;
    padding: 2px 6px; border-radius: 4px; margin-bottom: 5px; display: inline-block;
}
.dme-kcard-patient[b-0nub8bhtly]   { font-weight: 700; color: #0f172a; font-size: .85rem; margin-bottom: 2px; }
.dme-kcard-equipment[b-0nub8bhtly] { color: #374151; font-size: .78rem; line-height: 1.4; margin-bottom: 3px; }
.dme-kcard-hcpcs[b-0nub8bhtly]     { color: #94a3b8; font-size: .7rem; font-family: monospace; margin-bottom: 3px; }
.dme-kcard-meta[b-0nub8bhtly]      { display: flex; justify-content: space-between; font-size: .7rem; color: #94a3b8; margin-top: 6px; }

/* ── Slide-over ── */
.dme-overlay[b-0nub8bhtly] {
    position: fixed; inset: 0; background: rgba(0,0,0,.35);
    z-index: 1200; display: flex; justify-content: flex-end;
    animation: dme-fade-b-0nub8bhtly .15s;
}
@keyframes dme-fade-b-0nub8bhtly { from { opacity:0 } to { opacity:1 } }

.dme-drawer[b-0nub8bhtly] {
    background: #fff; width: 440px; max-width: 96vw;
    height: 100%; overflow-y: auto; padding: 32px 26px;
    box-shadow: -8px 0 32px rgba(0,0,0,.14); position: relative;
    animation: dme-slide-b-0nub8bhtly .2s ease;
}
@keyframes dme-slide-b-0nub8bhtly { from { transform:translateX(28px);opacity:0 } to { transform:translateX(0);opacity:1 } }

.dme-dl[b-0nub8bhtly] {
    display: grid; grid-template-columns: 110px 1fr;
    gap: 9px 14px; align-items: start; margin-bottom: 24px;
}
.dme-dl dt[b-0nub8bhtly] { font-size: .75rem; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: .04em; }
.dme-dl dd[b-0nub8bhtly] { font-size: .875rem; color: #1e293b; word-break: break-word; }

.dme-drawer-actions[b-0nub8bhtly] { display: flex; flex-wrap: wrap; gap: 8px; }

/* ── Vendor radio options ── */
.dme-vendor-opt[b-0nub8bhtly] {
    border: 1px solid #e2e8f0; border-radius: 8px; padding: 10px 14px;
    margin-bottom: 8px; cursor: pointer; transition: border-color .15s, background .15s;
}
.dme-vendor-opt:hover[b-0nub8bhtly]   { border-color: #6366f1; background: #f5f3ff; }
.dme-vendor-opt.selected[b-0nub8bhtly]{ border-color: #6366f1; background: #ede9fe; }
.dme-vendor-name[b-0nub8bhtly]  { display: block; font-weight: 700; color: #0f172a; font-size: .875rem; }
.dme-vendor-meta[b-0nub8bhtly]  { display: block; font-size: .76rem; color: #64748b; margin-top: 1px; }
/* /Components/Pages/Home.razor.rz.scp.css */
/* Home.razor.css — scoped styles cleared (all styles now inline in component) */
