/* /Components/DashboardFilterBar.razor.rz.scp.css */
.dashboard-filter-bar[b-u7oo0hh56d] {
    background: #22297a;
    border: 1px solid #e8ecf1;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 3px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.filter-container[b-u7oo0hh56d] {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group[b-u7oo0hh56d] {
    display: flex;
    gap: 8px;
    align-items: center;
    background: #f5f7fa;
    padding: 6px 8px;
    border-radius: 6px;
}

.filter-btn[b-u7oo0hh56d] {
    background: transparent;
    border: 1px solid #d0d8e0;
    color: #5a6c7d;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.filter-btn:hover[b-u7oo0hh56d] {
    background: #f0f4f8;
    border-color: #b0b8c0;
}

.filter-btn.active[b-u7oo0hh56d] {
    background: #0066cc;
    color: #ffffff;
    border-color: #0052a3;
}

.custom-date-group[b-u7oo0hh56d] {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #f5f7fa;
    padding: 8px 12px;
    border-radius: 6px;
}

.date-input[b-u7oo0hh56d] {
    padding: 6px 12px;
    border: 1px solid #d0d8e0;
    border-radius: 4px;
    font-size: 13px;
    font-family: inherit;
}

.date-input:focus[b-u7oo0hh56d] {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.date-separator[b-u7oo0hh56d] {
    color: #7a8b9a;
    font-size: 12px;
    font-weight: 500;
}

.btn-apply[b-u7oo0hh56d] {
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.btn-apply:hover[b-u7oo0hh56d] {
    background: #0052a3;
}

.filter-info[b-u7oo0hh56d] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.filter-label[b-u7oo0hh56d] {
    color: #7a8b9a;
    font-size: 13px;
    font-weight: 500;
    background: #f5f7fa;
    padding: 6px 12px;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .dashboard-filter-bar[b-u7oo0hh56d] {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-container[b-u7oo0hh56d] {
        width: 100%;
    }

    .filter-group[b-u7oo0hh56d] {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .filter-btn[b-u7oo0hh56d] {
        padding: 5px 10px;
        font-size: 12px;
    }

    .custom-date-group[b-u7oo0hh56d] {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .date-input[b-u7oo0hh56d] {
        width: 100%;
    }

    .date-separator[b-u7oo0hh56d] {
        display: none;
    }
}


/* /Components/DashboardSection1.razor.rz.scp.css */
.dashboard-container[b-asug08wlwi] {
    padding: 20px 0;
    background: #f8f9fb;
    min-height: 100vh;
}

.dashboard-header[b-asug08wlwi] {
    padding: 24px 0 32px;
    margin-bottom: 8px;
    border-bottom: 1px solid #e8ecf1;
}

.dashboard-title[b-asug08wlwi] {
    font-size: 28px;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 8px;
}

.dashboard-subtitle[b-asug08wlwi] {
    font-size: 14px;
    color: #7a8b9a;
    margin: 0;
}

.dashboard-section[b-asug08wlwi] {
    background: #ffffff;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 32px;
    border: 1px solid #e8ecf1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.section-header[b-asug08wlwi] {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8ecf1;
}

.section-header h3[b-asug08wlwi] {
    font-size: 18px;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
}

/* ============================================ */
/* DASHBOARD GRID LAYOUTS */
/* ============================================ */

.dashboard-grid-3[b-asug08wlwi] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
     align-items: stretch;
}

.dashboard-grid-2[b-asug08wlwi] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.dashboard-grid-1[b-asug08wlwi] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* ============================================ */
/* METRIC CARDS */
/* ============================================ */

.metric-card[b-asug08wlwi] {
    background: #ffffff;
    border: 1px solid #e8ecf1;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 420px;
    min-height: 420px;
    max-height: 420px;
}

.metric-card:hover[b-asug08wlwi] {
    border-color: #d0d8e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-header[b-asug08wlwi] {
    padding: 10px;
    border-bottom: 1px solid #e8ecf1;
    background: #48e0ff;
}

.card-header h4[b-asug08wlwi] {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.card-content[b-asug08wlwi] {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    min-height: 320px;
    height: 100%;
}

/* =========================================
   LEAD FLOW CHART FIX
========================================= */

#leadFlowChart[b-asug08wlwi] {
    width: 100% !important;
    height: 300px !important;
    max-height: 300px !important;
}

.metric-card canvas[b-asug08wlwi] {
    display: block;
    width: 100% !important;
}

/* ============================================ */
/* METRIC BOXES */
/* ============================================ */

.metric-boxes[b-asug08wlwi] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.metric-box[b-asug08wlwi] {
    text-align: center;
    padding: 16px 12px;
    border-radius: 6px;
    background: #f8f9fb;
    border: 1px solid #e8ecf1;
    transition: all 0.2s ease;
}

.metric-box:hover[b-asug08wlwi] {
    border-color: #d0d8e0;
    background: #f0f4f8;
}

.metric-box.active[b-asug08wlwi] {
    background: #e6f2ff;
    border-color: #0066cc;
}

.metric-box.active .metric-value[b-asug08wlwi] {
    color: #0066cc;
}

.metric-box.pending[b-asug08wlwi] {
    background: #fff4e6;
    border-color: #ff9800;
}

.metric-box.pending .metric-value[b-asug08wlwi] {
    color: #ff9800;
}

.metric-box.closed[b-asug08wlwi] {
    background: #ffe6e6;
    border-color: #cc0000;
}

.metric-box.closed .metric-value[b-asug08wlwi] {
    color: #cc0000;
}

.metric-value[b-asug08wlwi] {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
}

.metric-label[b-asug08wlwi] {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #0d0e0e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================ */
/* TASK BOXES */
/* ============================================ */

.task-boxes[b-asug08wlwi] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.task-box[b-asug08wlwi] {
    text-align: center;
    padding: 16px 12px;
    border-radius: 6px;
    background: #f8f9fb;
    border: 1px solid #e8ecf1;
}

.task-box.followup[b-asug08wlwi] {
    background: #e6f2ff;
    border-color: #0066cc;
}

.task-box.followup .task-value[b-asug08wlwi] {
    color: #0066cc;
}

.task-box.meeting[b-asug08wlwi] {
    background: #e6f9f0;
    border-color: #00a366;
}

.task-box.meeting .task-value[b-asug08wlwi] {
    color: #00a366;
}

.task-box.communication[b-asug08wlwi] {
    background: #fff4e6;
    border-color: #ff9800;
}

.task-box.communication .task-value[b-asug08wlwi] {
    color: #ff9800;
}

.task-box.overdue[b-asug08wlwi] {
    background: #ffe6e6;
    border-color: #cc0000;
}

.task-box.overdue .task-value[b-asug08wlwi] {
    color: #cc0000;
}

.task-value[b-asug08wlwi] {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
}

.task-label[b-asug08wlwi] {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================ */
/* LISTS */
/* ============================================ */

.no-data[b-asug08wlwi] {
    text-align: center;
    padding: 24px 16px;
    color: #7a8b9a;
    font-size: 13px;
}

.top-contacts-list[b-asug08wlwi],
.activity-list[b-asug08wlwi] {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item[b-asug08wlwi] {
    padding: 12px;
    border: 1px solid #e8ecf1;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.contact-item:hover[b-asug08wlwi] {
    border-color: #d0d8e0;
    background: #f8f9fb;
}

.contact-header[b-asug08wlwi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    gap: 8px;
}

.contact-header strong[b-asug08wlwi] {
    color: #1a202c;
    font-size: 13px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.quality-badge[b-asug08wlwi] {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.quality-badge.hot[b-asug08wlwi] {
    background: #ffe6e6;
    color: #cc0000;
}

.quality-badge.warm[b-asug08wlwi] {
    background: #fff4e6;
    color: #ff9800;
}

.quality-badge.cold[b-asug08wlwi] {
    background: #e6f2ff;
    color: #0066cc;
}

.contact-details[b-asug08wlwi] {
    font-size: 12px;
    color: #7a8b9a;
    line-height: 1.4;
}

.contact-details .detail[b-asug08wlwi] {
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-details .detail.comment[b-asug08wlwi] {
    color: #5a6c7d;
    font-style: italic;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
}

/* ============================================ */
/* ACTIVITY LIST */
/* ============================================ */

.activity-item[b-asug08wlwi] {
    padding: 12px;
    border: 1px solid #e8ecf1;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.activity-item:hover[b-asug08wlwi] {
    border-color: #d0d8e0;
    background: #f8f9fb;
}

.activity-meta[b-asug08wlwi] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    gap: 8px;
}

.activity-meta strong[b-asug08wlwi] {
    color: #1a202c;
    font-size: 13px;
}

.time-ago[b-asug08wlwi] {
    font-size: 11px;
    color: #a0aab0;
    white-space: nowrap;
}

.activity-text[b-asug08wlwi] {
    font-size: 12px;
    color: #5a6c7d;
    line-height: 1.4;
}

/* ============================================ */
/* CONTENT FADE-IN TRANSITION */
/* ============================================ */

.metric-value[b-asug08wlwi],
.task-value[b-asug08wlwi],
canvas[b-asug08wlwi],
.contact-item[b-asug08wlwi],
.activity-item[b-asug08wlwi] {
    animation: contentFadeIn-b-asug08wlwi 150ms ease-in-out;
}

@keyframes contentFadeIn-b-asug08wlwi {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 1440px) {
    .dashboard-grid-3[b-asug08wlwi] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .dashboard-grid-3[b-asug08wlwi] {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-grid-3:nth-child(3)[b-asug08wlwi] {
        grid-template-columns: 1fr;
    }

    .metric-boxes[b-asug08wlwi],
    .task-boxes[b-asug08wlwi] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .dashboard-container[b-asug08wlwi] {
        padding: 12px 0;
    }

    .dashboard-section[b-asug08wlwi] {
        padding: 16px;
        margin-bottom: 16px;
    }

    .dashboard-grid-3[b-asug08wlwi],
    .dashboard-grid-2[b-asug08wlwi] {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .metric-boxes[b-asug08wlwi],
    .task-boxes[b-asug08wlwi] {
        grid-template-columns: 1fr;
    }

    .contact-header[b-asug08wlwi] {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* =========================================
   LOWER SECTION FIX
========================================= */

.section1-lower-grid[b-asug08wlwi] {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 20px;

    align-items: start;
}

/* LOWER CARDS */

.section1-lower-grid .metric-card[b-asug08wlwi] {

    min-height: 260px !important;

    max-height: 260px !important;

    height: 260px !important;
}

/* CONTENT AREA */

.section1-lower-grid .card-content[b-asug08wlwi] {

    overflow-y: auto;

    overflow-x: hidden;

    height: 100%;
}

/* RECENT ACTIVITY */

.recent-activity-list[b-asug08wlwi] {

    display: flex;

    flex-direction: column;

    gap: 10px;

    overflow-y: auto;

    max-height: 180px;

    padding-right: 4px;
}

/* SCROLLBAR */

.recent-activity-list[b-asug08wlwi]::-webkit-scrollbar {

    width: 6px;
}

.recent-activity-list[b-asug08wlwi]::-webkit-scrollbar-thumb {

    background: #cbd5e1;

    border-radius: 20px;
}

.recent-activity-list[b-asug08wlwi]::-webkit-scrollbar-track {

    background: #f1f5f9;
}

/* =========================================
   CUSTOM SCROLLBAR
========================================= */

.card-content[b-asug08wlwi]::-webkit-scrollbar {
    width: 6px;
}

.card-content[b-asug08wlwi]::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.card-content[b-asug08wlwi]::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.card-content[b-asug08wlwi]::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
/* =========================================
   LEAD FLOW CARD FIX
========================================= */

.metric-card:nth-child(2) .card-content[b-asug08wlwi] {
    overflow: hidden;
    padding: 12px;
}

#leadFlowChart[b-asug08wlwi] {
    width: 100% !important;
    height: 100% !important;
    min-height: 320px !important;
    display: block !important;
}

/* =========================================
   ENTERPRISE ANALYTICS CHART CARD
========================================= */

.analytics-chart-card[b-asug08wlwi] {
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #edf1f7;

    padding: 22px 22px 16px;

    box-shadow:
        0 4px 14px rgba(15, 23, 42, 0.04),
        0 1px 3px rgba(15, 23, 42, 0.03);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

    overflow: hidden;

    min-height: 420px;

    position: relative;
}

.analytics-chart-card:hover[b-asug08wlwi] {
    transform: translateY(-2px);

    box-shadow:
        0 10px 28px rgba(15, 23, 42, 0.08),
        0 3px 8px rgba(15, 23, 42, 0.05);
}

/* =========================================
   HEADER
========================================= */

.analytics-chart-header[b-asug08wlwi] {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 18px;
}

.analytics-chart-title[b-asug08wlwi] {
    font-size: 18px;
    font-weight: 700;

    color: #172b4d;

    letter-spacing: -0.2px;
}

.analytics-chart-subtitle[b-asug08wlwi] {
    font-size: 13px;
    font-weight: 500;

    color: #7b8794;

    margin-top: 3px;
}

/* =========================================
   LEGEND
========================================= */

.chart-legend[b-asug08wlwi] {
    display: flex;
    align-items: center;
    gap: 10px;

    background: #f8fafc;

    padding: 7px 12px;

    border-radius: 999px;

    border: 1px solid #edf2f7;
}

.legend-dot[b-asug08wlwi] {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: linear-gradient(135deg, #0f6cbd, #3b82f6);

    box-shadow: 0 0 8px rgba(59, 130, 246, 0.35);
}

.legend-text[b-asug08wlwi] {
    font-size: 12px;
    font-weight: 600;

    color: #52606d;
}

/* =========================================
   CHART BODY
========================================= */

.analytics-chart-body[b-asug08wlwi] {
    height: 340px;

    position: relative;

    padding-top: 8px;
}

/* =========================================
   APEXCHARTS OVERRIDE
========================================= */

.apexcharts-canvas[b-asug08wlwi] {
    margin: 0 auto !important;
}

.apexcharts-svg[b-asug08wlwi] {
    overflow: visible !important;
}

/* GRIDLINES */

.apexcharts-gridline[b-asug08wlwi] {
    stroke: rgba(148, 163, 184, 0.14) !important;
}

/* AXIS LABELS */

.apexcharts-xaxis-label[b-asug08wlwi],
.apexcharts-yaxis-label[b-asug08wlwi] {
    fill: #7b8794 !important;

    font-size: 12px !important;
    font-weight: 500 !important;
}

/* TOOLTIP */

.apexcharts-tooltip[b-asug08wlwi] {
    border: none !important;

    border-radius: 14px !important;

    overflow: hidden !important;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, 0.12) !important;

    background: #ffffff !important;
}

.apexcharts-tooltip-title[b-asug08wlwi] {
    background: #f8fafc !important;

    border-bottom: 1px solid #edf2f7 !important;

    color: #172b4d !important;

    font-weight: 700 !important;

    padding: 10px 14px !important;
}

.apexcharts-tooltip-series-group[b-asug08wlwi] {
    padding: 8px 14px !important;
}

/* LINE */

.apexcharts-series path[b-asug08wlwi] {
    filter: drop-shadow(0 3px 10px rgba(59, 130, 246, 0.18));
}

/* MARKERS */

.apexcharts-marker[b-asug08wlwi] {
    stroke-width: 4px !important;

    stroke: #ffffff !important;

    filter: drop-shadow(0 2px 6px rgba(59, 130, 246, 0.25));
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {

    .analytics-chart-card[b-asug08wlwi] {
        min-height: auto;
    }

    .analytics-chart-body[b-asug08wlwi] {
        height: 300px;
    }
}

@media (max-width: 768px) {

    .analytics-chart-card[b-asug08wlwi] {
        padding: 18px;
        border-radius: 14px;
    }

    .analytics-chart-header[b-asug08wlwi] {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .analytics-chart-body[b-asug08wlwi] {
        height: 260px;
    }

    .analytics-chart-title[b-asug08wlwi] {
        font-size: 16px;
    }

}

/* =========================================
   CONTACTS CHART
========================================= */

.contacts-chart-wrapper[b-asug08wlwi] {

    position: relative;

    width: 100%;

    height: 230px;

    max-height: 230px;

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* DONUT CHART */

#leadGraphChart[b-asug08wlwi] {

    width: 100% !important;

    max-width: 220px !important;

    height: 220px !important;

    max-height: 220px !important;

    margin: 0 auto;
}

/* =========================================
   BOTTOM 3 CARDS ONLY
========================================= */

/* =========================================
   SECTION 1 - BOTTOM ROW FIX
========================================= */

/* Bottom 3 cards compact height */
.dashboard-grid-3:last-child .metric-card[b-asug08wlwi] {
    height: 185px !important;
    min-height: 185px !important;
    max-height: 185px !important;
}

/* Keep inner content natural */
.dashboard-grid-3:last-child .card-content[b-asug08wlwi] {
    overflow-y: auto;
}

/* Recent Activity scroll only */
.dashboard-grid-3:last-child .activity-list[b-asug08wlwi] {
    max-height: 150px;
    overflow-y: auto;
}

.dashboard-grid-3:last-child .card-content[b-asug08wlwi] {
    padding: 12px 18px !important;
}
/* /Components/DashboardSection2.razor.rz.scp.css */
/* ============================================ */
/* SECTION 2: METRICS & ANALYTICS */
/* ============================================ */

.section-2-container[b-1gkz7fnykk] {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dashboard-grid-2[b-1gkz7fnykk] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.dashboard-grid-1[b-1gkz7fnykk] {
    width: 100%;
}

.metric-card[b-1gkz7fnykk] {
    background: #ffffff;
    border: 1px solid #dfe5ec;
    border-radius: 14px;
    overflow: hidden;
    box-shadow:
        0 2px 8px rgba(15, 23, 42, 0.04),
        0 1px 2px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
}

.card-header[b-1gkz7fnykk] {
    height: 56px;
    min-height: 56px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #edf2f7;
    background: #fbfcfe;
}

.card-header h4[b-1gkz7fnykk] {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.card-content[b-1gkz7fnykk] {
    padding: 16px;
    flex: 1;
    overflow: hidden;
}
.dashboard-grid-2 .metric-card[b-1gkz7fnykk] {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.source-list[b-1gkz7fnykk],
.user-metrics-boxes[b-1gkz7fnykk] {
    height: 100%;
}

.no-data[b-1gkz7fnykk] {
    height: 100%;
    min-height: 320px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* TOTAL LEADS BOX */
.total-leads-box[b-1gkz7fnykk] {
    height: 120px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f5bd7 0%, #003c97 100%);
    border-radius: 12px;
    color: white;
    margin-bottom: 16px;
}

.total-value[b-1gkz7fnykk] {
    font-size: 32px;
    font-weight: 700;
    display: block;
}

.total-label[b-1gkz7fnykk] {
    font-size: 13px;
    font-weight: 500;
    display: block;
    margin-top: 4px;
    opacity: 0.9;
}

/* STAGE METRICS LIST */
.stage-metrics-list[b-1gkz7fnykk] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    overflow-y: auto;
    max-height: 320px;
    padding-right: 4px;
}

.stage-metric-item[b-1gkz7fnykk] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px;
    min-height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.stage-metric-item:hover[b-1gkz7fnykk] {
    transform: translateY(-2px);
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.stage-info[b-1gkz7fnykk] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.stage-name[b-1gkz7fnykk] {
    font-size: 13px;
    font-weight: 500;
    color: #1a202c;
}

.stage-count[b-1gkz7fnykk] {
    font-size: 13px;
    font-weight: 600;
    color: #0066cc;
}

.stage-bar[b-1gkz7fnykk] {
    height: 6px;
    background: #e8ecf1;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.stage-progress[b-1gkz7fnykk] {
    height: 100%;
    background: linear-gradient(90deg, #0066cc, #0052a3);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.stage-percentage[b-1gkz7fnykk] {
    display: block;
    font-size: 11px;
    color: #7a8b9a;
    text-align: right;
}

/* CHART CONTENT */
.chart-content[b-1gkz7fnykk] {
    position: relative;
    height: 100%;
    min-height: 0;
}

.chart-content canvas[b-1gkz7fnykk] {
    width: 100% !important;
    height: 100% !important;
}

.hospital-lead-count[b-1gkz7fnykk] {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 4px 10px;

    margin-bottom: 6px;

    border-radius: 999px;

    background: #dbeafe;

    color: #1d4ed8;

    font-size: 11px;
    font-weight: 700;
}

/* SOURCE LIST */
.source-list[b-1gkz7fnykk] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 12px;

    height: 100%;
    max-height: 320px;

    overflow-y: auto;

    align-content: start;

    padding-right: 6px;
}

.source-item[b-1gkz7fnykk] {
    background: #f8fafc;

    border: 1px solid #e2e8f0;

    border-radius: 10px;

    padding: 12px;

    min-height: 90px;
    max-height: 90px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: all 0.2s ease;

    overflow: hidden;
}

.source-item:hover[b-1gkz7fnykk] {
    border-color: #2563eb;

    transform: translateY(-2px);

    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.08);
}
.user-metrics-boxes[b-1gkz7fnykk] {
    height: 100%;
    align-content: start;
}
.source-info[b-1gkz7fnykk] {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 8px;

    margin-bottom: 10px;
}

.source-name[b-1gkz7fnykk] {
    font-size: 13px;
    font-weight: 600;

    color: #1e293b;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.source-count[b-1gkz7fnykk] {
    font-size: 13px;
    font-weight: 600;
    color: #00a366;
}

.source-bar[b-1gkz7fnykk] {
    height: 6px;

    background: #e2e8f0;

    border-radius: 999px;

    overflow: hidden;
}

.source-progress[b-1gkz7fnykk] {
    height: 100%;

    background: linear-gradient(90deg, #10b981, #059669);

    border-radius: 999px;
}

/* USER METRICS BOXES */
.user-metrics-boxes[b-1gkz7fnykk] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.user-metric-box[b-1gkz7fnykk] {
    padding: 16px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #e8ecf1;
}

.user-metric-box.total[b-1gkz7fnykk] {
    background: #e6f2ff;
    border-color: #0066cc;
}

.user-metric-box.active[b-1gkz7fnykk] {
    background: #e6f9f0;
    border-color: #00a366;
}

.user-metric-box.inactive[b-1gkz7fnykk] {
    background: #fff4e6;
    border-color: #ff9800;
}

.user-metric-value[b-1gkz7fnykk] {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.user-metric-box.total .user-metric-value[b-1gkz7fnykk] {
    color: #0066cc;
}

.user-metric-box.active .user-metric-value[b-1gkz7fnykk] {
    color: #00a366;
}

.user-metric-box.inactive .user-metric-value[b-1gkz7fnykk] {
    color: #ff9800;
}

.user-metric-label[b-1gkz7fnykk] {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #7a8b9a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* HOSPITAL GRID */
.hospital-grid[b-1gkz7fnykk] {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 4px;
}

.hospital-card[b-1gkz7fnykk] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px;
    min-height: 82px;
    transition: all 0.2s ease;
}

.hospital-card:hover[b-1gkz7fnykk] {
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08);
}

.hospital-name[b-1gkz7fnykk] {
    font-size: 13px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    word-break: break-word;
}

.hospital-details[b-1gkz7fnykk] {
    font-size: 11px;
    color: #7a8b9a;
    line-height: 1.4;
}

.hospital-city[b-1gkz7fnykk],
.hospital-state[b-1gkz7fnykk] {
    display: block;
}

/* BUTTONS */
.btn-view-more[b-1gkz7fnykk],
.btn-view-less[b-1gkz7fnykk] {
    display: block;
    width: 100%;
    padding: 12px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.btn-view-more:hover[b-1gkz7fnykk],
.btn-view-less:hover[b-1gkz7fnykk] {
    background: #0052a3;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */


@media (max-width: 1600px) {

    .hospital-grid[b-1gkz7fnykk] {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 1400px) {

    .source-list[b-1gkz7fnykk] {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {

    .source-list[b-1gkz7fnykk] {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .source-list[b-1gkz7fnykk] {
        grid-template-columns: 1fr;
    }
}



@media (max-width: 1200px) {

    .dashboard-grid-2[b-1gkz7fnykk] {
        grid-template-columns: 1fr;
    }

    .dashboard-grid-2 .metric-card[b-1gkz7fnykk] {
        height: auto;
    }

    .stage-metrics-list[b-1gkz7fnykk] {
        grid-template-columns: repeat(2, 1fr);
    }

    .source-list[b-1gkz7fnykk] {
        grid-template-columns: repeat(2, 1fr);
    }

    .hospital-grid[b-1gkz7fnykk] {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {

    .stage-metrics-list[b-1gkz7fnykk],
    .source-list[b-1gkz7fnykk] {
        grid-template-columns: 1fr;
    }

    .hospital-grid[b-1gkz7fnykk] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* /Components/DashboardSection3.razor.rz.scp.css */
/* ============================================ */
/* SECTION 3: COLD CALLING MODULE */
/* ============================================ */

.section-3-container[b-ey4h4o6fmz] {
    width: 100%;
}

/* SECTION INFO */
.section-info[b-ey4h4o6fmz] {
    margin-bottom: 20px;
}

.info-message[b-ey4h4o6fmz] {
    background: #e6f2ff;
    border: 1px solid #0066cc;
    border-left: 4px solid #0066cc;
    padding: 16px;
    border-radius: 4px;
    color: #0052a3;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* PLACEHOLDER ELEMENTS */
.metric-card.placeholder[b-ey4h4o6fmz] {
    opacity: 0.95;
    border-color: #d0d8e0;
    background: #fafbfc;
}

.metric-card.placeholder:hover[b-ey4h4o6fmz] {
    border-color: #d0d8e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.placeholder-box[b-ey4h4o6fmz],
.placeholder-chart[b-ey4h4o6fmz] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    background: #f8f9fb;
    border-radius: 6px;
    border: 1px dashed #d0d8e0;
    min-height: 180px;
}

.placeholder-chart[b-ey4h4o6fmz] {
    min-height: 300px;
}

.placeholder-icon[b-ey4h4o6fmz] {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.placeholder-text[b-ey4h4o6fmz] {
    font-size: 14px;
    font-weight: 500;
    color: #1a202c;
    margin-bottom: 4px;
}

.placeholder-meta[b-ey4h4o6fmz] {
    font-size: 12px;
    color: #a0aab0;
}

/* TECHNICAL NOTES */
.technical-notes[b-ey4h4o6fmz] {
    background: #f0f4f8;
    border: 1px solid #d0d8e0;
    border-radius: 8px;
    margin-top: 24px;
    overflow: hidden;
}

.notes-header[b-ey4h4o6fmz] {
    background: #e6f2ff;
    border-bottom: 1px solid #b3d9ff;
    padding: 16px;
}

.notes-header h4[b-ey4h4o6fmz] {
    font-size: 14px;
    font-weight: 600;
    color: #0052a3;
    margin: 0;
}

.notes-content[b-ey4h4o6fmz] {
    padding: 20px;
}

.note-item[b-ey4h4o6fmz] {
    display: flex;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8ecf1;
}

.note-item:last-child[b-ey4h4o6fmz] {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.note-item strong[b-ey4h4o6fmz] {
    color: #1a202c;
    font-size: 13px;
    min-width: 160px;
    display: block;
    margin-bottom: 4px;
}

.note-item span[b-ey4h4o6fmz] {
    color: #5a6c7d;
    font-size: 12px;
    line-height: 1.6;
    display: block;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 768px) {
    .placeholder-box[b-ey4h4o6fmz],
    .placeholder-chart[b-ey4h4o6fmz] {
        padding: 30px 16px;
        min-height: 150px;
    }

    .placeholder-chart[b-ey4h4o6fmz] {
        min-height: 250px;
    }

    .placeholder-icon[b-ey4h4o6fmz] {
        font-size: 32px;
    }

    .note-item[b-ey4h4o6fmz] {
        flex-direction: column;
    }

    .note-item strong[b-ey4h4o6fmz] {
        min-width: auto;
        margin-bottom: 6px;
    }

    .info-message[b-ey4h4o6fmz] {
        padding: 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .placeholder-box[b-ey4h4o6fmz],
    .placeholder-chart[b-ey4h4o6fmz] {
        padding: 24px 12px;
    }

    .notes-content[b-ey4h4o6fmz] {
        padding: 12px;
    }

    .note-item[b-ey4h4o6fmz] {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }
}
/* /Components/Helpers/InlineSpinner.razor.rz.scp.css */
/* Inline spinner - lightweight, non-blocking indicator */
.inline-spinner[b-v46aqv4peu] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
}

.spinner-dot[b-v46aqv4peu] {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #0ea5e9;
    border-radius: 50%;
    animation: spin-b-v46aqv4peu 1s infinite;
}

@keyframes spin-b-v46aqv4peu {
    0%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}
/* /Components/Helpers/SkeletonLoader.razor.rz.scp.css */
/* Skeleton loader animations */
.skeleton-loader[b-qqe34k863j] {
    background: linear-gradient(
        90deg,
        #e2e8f0 0%,
        #f1f5f9 50%,
        #e2e8f0 100%
    );
    background-size: 200% 100%;
    border-radius: 6px;
    animation: shimmer-b-qqe34k863j 1.5s infinite;
}

@keyframes shimmer-b-qqe34k863j {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Chart-sized skeleton */
.skeleton-chart[b-qqe34k863j] {
    width: 100%;
    height: 300px;
    border-radius: 8px;
}

/* Table row skeleton */
.skeleton-row[b-qqe34k863j] {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.skeleton-cell[b-qqe34k863j] {
    flex: 1;
    height: 32px;
    border-radius: 4px;
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-em8azpdkkl] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-em8azpdkkl] {
    flex: 1;
}

.sidebar[b-em8azpdkkl] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-em8azpdkkl] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-em8azpdkkl]  a, .top-row[b-em8azpdkkl]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-em8azpdkkl]  a:hover, .top-row[b-em8azpdkkl]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-em8azpdkkl]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-em8azpdkkl] {
        justify-content: space-between;
    }

    .top-row[b-em8azpdkkl]  a, .top-row[b-em8azpdkkl]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-em8azpdkkl] {
        flex-direction: row;
    }

    .sidebar[b-em8azpdkkl] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-em8azpdkkl] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-em8azpdkkl]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-em8azpdkkl], article[b-em8azpdkkl] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-em8azpdkkl] {
    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-em8azpdkkl] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-2er4varg8v] {
    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-2er4varg8v] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-2er4varg8v] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-2er4varg8v] {
    font-size: 1.1rem;
}

.bi[b-2er4varg8v] {
    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-2er4varg8v] {
    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-2er4varg8v] {
    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-2er4varg8v] {
    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-2er4varg8v] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-2er4varg8v] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-2er4varg8v] {
        padding-bottom: 1rem;
    }

    .nav-item[b-2er4varg8v]  .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-2er4varg8v]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-2er4varg8v]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-2er4varg8v] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-2er4varg8v] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-2er4varg8v] {
        display: none;
    }

    .nav-scrollable[b-2er4varg8v] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

.company-logo[b-2er4varg8v]{
    width: 140px;
    height: auto;
    object-fit: contain;
}

/* /Components/Pages/Admin/Leads.razor.rz.scp.css */
.lead-tabs[b-3j84ssbtb4] {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.lead-tab[b-3j84ssbtb4] {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
}

.lead-tab.active[b-3j84ssbtb4] {
    opacity: 1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* COLORS */
.tab-all[b-3j84ssbtb4] { background: #6c757d; }
.tab-new[b-3j84ssbtb4] { background: #e74c3c; }
.tab-active[b-3j84ssbtb4] { background: #3498db; }
.tab-inactive[b-3j84ssbtb4] { background: #f39c12; }
.tab-booked[b-3j84ssbtb4] { background: #16a085; }

/* ===== IMPORT MODAL ===== */

.import-modal[b-3j84ssbtb4]{
    width: 760px;
    max-width: 95%;

    max-height: 90vh;

    overflow-y: auto;
}

.import-body[b-3j84ssbtb4]{
    padding: 24px;
}

.import-info-box[b-3j84ssbtb4]{
    display: flex;
    flex-direction: column;
    gap: 14px;

    padding: 18px;

    background: #f8fafc;

    border: 1px solid #dbe4ee;

    border-radius: 14px;

    margin-bottom: 24px;
}

.import-step[b-3j84ssbtb4]{
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 14px;
    font-weight: 600;

    color: #1e293b;
}

.import-step span[b-3j84ssbtb4]{
    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: #2563eb;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 13px;
    font-weight: 700;
}

.import-upload-section[b-3j84ssbtb4]{
    margin-bottom: 24px;

    padding: 18px;

    border: 1px dashed #cbd5e1;

    border-radius: 14px;

    background: #f8fafc;
}

.upload-label[b-3j84ssbtb4]{
    display: block;

    margin-bottom: 10px;

    font-size: 14px;
    font-weight: 600;

    color: #334155;
}
.import-actions[b-3j84ssbtb4]{
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 14px;

    margin-top: 10px;
}

/* ===== EXPORT MODAL ===== */

.export-modal[b-3j84ssbtb4]{
    width: 1100px;

    max-width: 96%;

    max-height: 92vh;

    overflow-y: auto;
}

.export-body[b-3j84ssbtb4]{
    padding: 24px;
}

.export-grid[b-3j84ssbtb4]{
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-bottom: 24px;
}

.export-grid label[b-3j84ssbtb4]{
    display: flex;

    flex-direction: column;

    gap: 8px;

    font-size: 14px;

    font-weight: 600;

    color: #334155;
}

.export-actions[b-3j84ssbtb4]{
    display: flex;

    justify-content: flex-end;

    gap: 12px;

    padding-top: 10px;

    border-top: 1px solid #e2e8f0;
}

@media(max-width: 900px){

    .export-grid[b-3j84ssbtb4]{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 640px){

    .export-grid[b-3j84ssbtb4]{
        grid-template-columns: 1fr;
    }
}

.import-preview-table[b-3j84ssbtb4] {
    margin-top: 25px;
    max-height: 350px;
    overflow: auto;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
}

.valid-row[b-3j84ssbtb4] {
    background: #f0fdf4;
}

.invalid-row[b-3j84ssbtb4] {
    background: #fef2f2;
}

.import-valid[b-3j84ssbtb4] {
    color: #16a34a;
    font-weight: 700;
}

.import-invalid[b-3j84ssbtb4] {
    color: #dc2626;
    font-weight: 600;
}
/* /Components/Pages/Admin/Settings/Departments.razor.rz.scp.css */
/* PAGE CARD */
.card[b-i9ed09xq8z] {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}

/* HEADER */
.card-head[b-i9ed09xq8z] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* TABLE */
.table[b-i9ed09xq8z] {
    border-radius: 8px;
    overflow: hidden;
}

    .table th[b-i9ed09xq8z] {
        background: #2f6fed;
        color: #fff;
        font-weight: 600;
    }

    .table td[b-i9ed09xq8z] {
        vertical-align: middle;
        font-size: 14px;
    }

/* BUTTONS */
.btn[b-i9ed09xq8z] {
    border-radius: 6px;
}

.btn-sm[b-i9ed09xq8z] {
    padding: 4px 10px;
}

/* MODAL BACKDROP */
.custom-modal-backdrop[b-i9ed09xq8z] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050;
}

/* MODAL BOX */
.custom-modal[b-i9ed09xq8z] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 10px;
    width: 400px;
    padding: 20px;
    z-index: 1060;
}

/* INPUT */
.form-control[b-i9ed09xq8z] {
    border-radius: 6px;
    font-size: 14px;
}
/* /Components/Pages/Admin/Settings/Hospitals.razor.rz.scp.css */
/* MODAL SIZE FIX */
.modal.fade.show[b-im1hdr7u5f] {
    display: flex !important;
    align-items: center;
    justify-content: center;
}


.modal-dialog[b-im1hdr7u5f] {
    max-width: 900px;
    width: 100%;
    margin: 0;
}

/* MODAL SCROLL CONTROL */
.modal-content[b-im1hdr7u5f] {
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    padding: 25px;
}

/* FORM GRID (MAIN FIX) */
.form-grid[b-im1hdr7u5f] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 25px;
}

/* LABEL IMPROVE */
label[b-im1hdr7u5f] {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

/* INPUT LOOK */
.form-control[b-im1hdr7u5f] {
    height: 40px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
}

/* TEXTAREA */
textarea.form-control[b-im1hdr7u5f] {
    height: 100px;
}

/* FULL WIDTH FIELD */
.full-width[b-im1hdr7u5f] {
    grid-column: span 2;
}
/* BUTTON AREA */
.modal-footer-custom[b-im1hdr7u5f] {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/* BUTTON STYLE */
.btn-success[b-im1hdr7u5f] {
    padding: 8px 30px;
    border-radius: 6px;
}

.btn-secondary[b-im1hdr7u5f] {
    padding: 8px 20px;
    border-radius: 6px;
}
/* /Components/Pages/Admin/Settings/OrganizationSettings.razor.rz.scp.css */
/* FORM GRID */
.org-form-grid[b-hbd1200p7k] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px;
}

/* FIELD */
.form-group[b-hbd1200p7k] {
    display: flex;
    flex-direction: column;
}

    .form-group label[b-hbd1200p7k] {
        font-weight: 600;
        margin-bottom: 6px;
    }

    /* INPUT */
    .form-group input[b-hbd1200p7k] {
        padding: 10px;
        border-radius: 6px;
        border: 1px solid #ccc;
    }

/* SAVE BUTTON */
.btn-save[b-hbd1200p7k] {
    background: green;
    color: white;
    padding: 12px;
    border-radius: 6px;
    border: none;
    width: 100%;
}
/* /Components/Pages/Admin/Settings/Roles.razor.rz.scp.css */
.custom-modal[b-888fozq957] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.55);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.custom-modal .modal-dialog[b-888fozq957] {
    margin: 0;
}

.custom-modal .modal-content[b-888fozq957] {
    width: 420px;
    border-radius: 14px;
    padding: 20px;
    border: none;
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
    animation: fadeIn 0.25s ease-in-out;
}
/* /Components/Pages/Admin/Settings/Stages.razor.rz.scp.css */
/* 🔥 BACKDROP */
.custom-team-modal[b-u6t29fs294] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* 🔥 WRAPPER (centering control) */
.team-modal-wrapper[b-u6t29fs294] {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* 🔥 MODAL BOX */
.team-modal-box[b-u6t29fs294] {
    width: 420px;
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    animation: fadeIn-b-u6t29fs294 0.25s ease-in-out;
}

/* बाकी same */
.team-modal-box h5[b-u6t29fs294] {
    font-size: 20px;
    font-weight: 600;
}

.team-modal-box label[b-u6t29fs294] {
    font-weight: 500;
    margin-bottom: 5px;
}

.team-modal-box .form-control[b-u6t29fs294] {
    border-radius: 10px;
    padding: 10px;
    font-size: 14px;
}

.team-modal-box .form-control:focus[b-u6t29fs294] {
    outline: none;
    border-color: #2f6fed;
    box-shadow: 0 0 0 2px rgba(47,111,237,0.2);
}

.team-modal-box .text-end[b-u6t29fs294] {
    margin-top: 18px;
}

.team-modal-box .btn[b-u6t29fs294] {
    border-radius: 8px;
    padding: 6px 16px;
}

.team-modal-box .btn-close[b-u6t29fs294] {
    font-size: 18px;
}

/* animation */
@keyframes fadeIn-b-u6t29fs294 {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* /Components/Pages/Admin/Settings/Teams.razor.rz.scp.css */
/* 🔥 BACKDROP */
.custom-team-modal[b-rc8cxl42mt] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* 🔥 WRAPPER (centering control) */
.team-modal-wrapper[b-rc8cxl42mt] {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* 🔥 MODAL BOX */
.team-modal-box[b-rc8cxl42mt] {
    width: 420px;
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    animation: fadeIn-b-rc8cxl42mt 0.25s ease-in-out;
}

/* बाकी same */
.team-modal-box h5[b-rc8cxl42mt] {
    font-size: 20px;
    font-weight: 600;
}

.team-modal-box label[b-rc8cxl42mt] {
    font-weight: 500;
    margin-bottom: 5px;
}

.team-modal-box .form-control[b-rc8cxl42mt] {
    border-radius: 10px;
    padding: 10px;
    font-size: 14px;
}

.team-modal-box .form-control:focus[b-rc8cxl42mt] {
    outline: none;
    border-color: #2f6fed;
    box-shadow: 0 0 0 2px rgba(47,111,237,0.2);
}

.team-modal-box .text-end[b-rc8cxl42mt] {
    margin-top: 18px;
}

.team-modal-box .btn[b-rc8cxl42mt] {
    border-radius: 8px;
    padding: 6px 16px;
}

.team-modal-box .btn-close[b-rc8cxl42mt] {
    font-size: 18px;
}

/* animation */
@keyframes fadeIn-b-rc8cxl42mt {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* /Components/Pages/Admin/Users.razor.rz.scp.css */
/* Modal Overlay */

.modal h4[b-wpa6lkb3kx] {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
}

/* Form Grid */
.form-grid[b-wpa6lkb3kx] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-grid input[b-wpa6lkb3kx],
.form-grid select[b-wpa6lkb3kx] {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-grid input:focus[b-wpa6lkb3kx],
.form-grid select:focus[b-wpa6lkb3kx] {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

.form-grid > div[b-wpa6lkb3kx] {
    grid-column: 1 / -1;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-grid label[b-wpa6lkb3kx] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
}

.form-grid input[type="checkbox"][b-wpa6lkb3kx] {
    cursor: pointer;
    width: auto;
    padding: 0;
}

/* Modal Actions */
.modal-actions[b-wpa6lkb3kx] {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.btn-save[b-wpa6lkb3kx],
.btn-cancel[b-wpa6lkb3kx],
.btn-add[b-wpa6lkb3kx],
.btn-edit[b-wpa6lkb3kx],
.btn-delete[b-wpa6lkb3kx] {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-save[b-wpa6lkb3kx] {
    background-color: #28a745;
    color: white;
}

.btn-save:hover[b-wpa6lkb3kx] {
    background-color: #218838;
}

.btn-cancel[b-wpa6lkb3kx] {
    background-color: #6c757d;
    color: white;
}

.btn-cancel:hover[b-wpa6lkb3kx] {
    background-color: #5a6268;
}

.btn-add[b-wpa6lkb3kx] {
    background-color: #007bff;
    color: white;
    margin-bottom: 20px;
}

.btn-add:hover[b-wpa6lkb3kx] {
    background-color: #0056b3;
}

.btn-edit[b-wpa6lkb3kx] {
    background-color: #17a2b8;
    color: white;
    padding: 6px 12px;
    font-size: 12px;
}

.btn-edit:hover[b-wpa6lkb3kx] {
    background-color: #138496;
}

.btn-delete[b-wpa6lkb3kx] {
    background-color: #dc3545;
    color: white;
    padding: 6px 12px;
    font-size: 12px;
}

.btn-delete:hover[b-wpa6lkb3kx] {
    background-color: #c82333;
}

/* User Table */
.user-table[b-wpa6lkb3kx] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.user-table thead[b-wpa6lkb3kx] {
    background-color: #f8f9fa;
}

.user-table th[b-wpa6lkb3kx] {
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}

.user-table td[b-wpa6lkb3kx] {
    padding: 12px;
    border-bottom: 1px solid #dee2e6;
}

.user-table tbody tr:hover[b-wpa6lkb3kx] {
    background-color: #f8f9fa;
}

.user-table input[type="checkbox"][b-wpa6lkb3kx] {
    cursor: pointer;
}

.user-table small[b-wpa6lkb3kx] {
    display: block;
    color: #666;
    margin: 4px 0 0 0;
}



.status-wrapper[b-wpa6lkb3kx]{
    display:flex;
    align-items:center;
    gap:10px;
}

.status-badge[b-wpa6lkb3kx]{
    display:inline-flex;
    align-items:center;
    gap:6px;

    padding:5px 12px;

    border-radius:30px;

    font-size:12px;
    font-weight:600;
}

.status-dot[b-wpa6lkb3kx]{
    width:10px;
    height:10px;

    border-radius:50%;
}

.status-badge.active[b-wpa6lkb3kx]{
    background:#eafaf1;
    color:#1e8e3e;
}

.status-badge.active .status-dot[b-wpa6lkb3kx]{
    background:#1e8e3e;
}

.status-badge.inactive[b-wpa6lkb3kx]{
    background:#fdecec;
    color:#d93025;
}

.status-badge.inactive .status-dot[b-wpa6lkb3kx]{
    background:#d93025;
}

.navbar-toggler[b-wpa6lkb3kx] {
    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-wpa6lkb3kx] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-wpa6lkb3kx] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-wpa6lkb3kx] {
    font-size: 1.1rem;
}

.bi[b-wpa6lkb3kx] {
    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-wpa6lkb3kx] {
    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-wpa6lkb3kx] {
    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-wpa6lkb3kx] {
    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-wpa6lkb3kx] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-wpa6lkb3kx] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-wpa6lkb3kx] {
        padding-bottom: 1rem;
    }

    .nav-item[b-wpa6lkb3kx]  .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-wpa6lkb3kx]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-wpa6lkb3kx]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-wpa6lkb3kx] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-wpa6lkb3kx] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-wpa6lkb3kx] {
        display: none;
    }

    .nav-scrollable[b-wpa6lkb3kx] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

.company-logo[b-wpa6lkb3kx]{
    width: 140px;
    height: auto;
    object-fit: contain;
}


.modal-overlay[b-wpa6lkb3kx]{
    position:fixed;
    inset:0;

    display:flex;
    justify-content:center;
    align-items:flex-start;

    padding:40px 24px;

    background:rgba(15,23,42,.65);

    -webkit-backdrop-filter:blur(8px);
    backdrop-filter:blur(8px);

    z-index:99999;

    overflow-y:auto;
}
.modal-box[b-wpa6lkb3kx]{
    width:100%;
    max-width:750px;

    background:#ffffff;

    border-radius:28px;

    padding:38px;

    margin:auto 0;

    box-shadow:
        0 10px 25px rgba(0,0,0,.08),
        0 25px 60px rgba(0,0,0,.18);

    border:1px solid rgba(255,255,255,.7);

    animation:modalShow-b-wpa6lkb3kx .18s ease;
}

@keyframes modalShow-b-wpa6lkb3kx{
    from{
        opacity:0;
        transform:translateY(18px) scale(.98);
    }

    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

.modal-box h4[b-wpa6lkb3kx]{
    margin:0 0 28px;

    font-size:34px;
    font-weight:700;

    color:#0f172a;

    letter-spacing:-.5px;
}

.form-grid[b-wpa6lkb3kx]{
    display:grid;

    grid-template-columns:
        repeat(2,minmax(0,1fr));

    gap:22px;
}

/* =========================
   INPUTS
========================= */

.form-grid input[b-wpa6lkb3kx],
.form-grid select[b-wpa6lkb3kx]{
    width:100%;
    height:58px;

    border:1px solid #dbe4ee;

    border-radius:16px;

    padding:0 18px;

    background:#fff;

    font-size:15px;
    font-weight:500;

    color:#0f172a;

    transition:.2s ease;
}

.form-grid input[b-wpa6lkb3kx]::placeholder{
    color:#94a3b8;
}

.form-grid input:focus[b-wpa6lkb3kx],
.form-grid select:focus[b-wpa6lkb3kx]{
    outline:none;

    border-color:#4f46e5;

    box-shadow:
        0 0 0 5px rgba(79,70,229,.12);
}

.profile-upload[b-wpa6lkb3kx],
.notify-section[b-wpa6lkb3kx],
.active-section[b-wpa6lkb3kx]{
    grid-column:1/-1;
}

.upload-label[b-wpa6lkb3kx]{
    display:block;

    margin-bottom:12px;

    font-size:15px;
    font-weight:600;

    color:#334155;
}

.image-preview-box[b-wpa6lkb3kx]{
    margin-top:14px;

    display:flex;
    align-items:center;
    gap:16px;

    padding:14px 16px;

    border-radius:18px;

    border:1px solid #e2e8f0;

    background:#f8fafc;

    max-width:380px;
}

.preview-image[b-wpa6lkb3kx]{
    width:72px;
    height:72px;

    border-radius:16px;

    object-fit:cover;

    border:3px solid #fff;

    box-shadow:0 4px 14px rgba(0,0,0,.08);
}

.image-name[b-wpa6lkb3kx]{
    font-size:14px;
    color:#475569;

    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;

    max-width:220px;
}

/* =========================
   CHECKBOX AREA
========================= */

.notify-section[b-wpa6lkb3kx],
.active-section[b-wpa6lkb3kx]{
    display:flex;
    align-items:center;
    gap:28px;

    padding-top:4px;
}

.notify-section label[b-wpa6lkb3kx],
.active-section label[b-wpa6lkb3kx]{
    display:flex;
    align-items:center;
    gap:10px;

    font-size:15px;
    font-weight:500;

    color:#334155;
}

.notify-section input[type="checkbox"][b-wpa6lkb3kx],
.active-section input[type="checkbox"][b-wpa6lkb3kx]{
    width:18px;
    height:18px;

    accent-color:#4f46e5;

    cursor:pointer;
}

/* =========================
   ACTION BUTTONS
========================= */

.modal-actions[b-wpa6lkb3kx]{
    display:flex;
    justify-content:flex-end;
    gap:14px;

    margin-top:34px;
}

.btn-save[b-wpa6lkb3kx],
.btn-cancel[b-wpa6lkb3kx]{
    height:52px;

    padding:0 26px;

    border:none;

    border-radius:16px;

    font-size:15px;
    font-weight:600;

    cursor:pointer;

    transition:.2s ease;
}

.btn-save[b-wpa6lkb3kx]{
    background:#16a34a;
    color:#fff;
}

.btn-save:hover[b-wpa6lkb3kx]{
    transform:translateY(-1px);

    box-shadow:
        0 8px 20px rgba(22,163,74,.25);
}

.btn-cancel[b-wpa6lkb3kx]{
    background:#e2e8f0;
    color:#0f172a;
}

.btn-cancel:hover[b-wpa6lkb3kx]{
    background:#cbd5e1;
}

/* =========================
   MOBILE
========================= */

@media(max-width:900px){

    .modal-overlay[b-wpa6lkb3kx]{
        padding:20px 14px;
    }

    .modal-box[b-wpa6lkb3kx]{
        padding:24px;
        border-radius:22px;
    }

    .form-grid[b-wpa6lkb3kx]{
        grid-template-columns:1fr;
        gap:18px;
    }

    .modal-box h4[b-wpa6lkb3kx]{
        font-size:28px;
    }
}
/* /Components/Pages/Dashboard.razor.rz.scp.css */
/* =========================
   PAGE CONTAINER
========================= */
.dashboard-container[b-k767hq71lp] {
    padding: 0px 2px;
    background: #f4f6fb;
    min-height: 100vh;
}

/* =========================
   TOP HEADER
========================= */
.dashboard-header[b-k767hq71lp] {
     background: #ffe6e6;

    border-radius: 14px;

    padding: 5px 24px;

    margin-bottom: 3px;

    border: 1px solid #e8edf5;

    box-shadow:
        0 2px 6px rgba(15, 23, 42, 0.04),
        0 1px 2px rgba(15, 23, 42, 0.03);
}

/* =========================
   DASHBOARD TITLE
========================= */
.dashboard-title[b-k767hq71lp] {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.0;
    color: #111827;
    letter-spacing: -0.5px;
}

/* =========================
   DASHBOARD SUBTITLE
========================= */
.dashboard-subtitle[b-k767hq71lp] {
    margin-top: 6px;
    margin-bottom: 0;

    font-size: 14px;
    font-weight: 500;

    color: #8a0303;
}

/* =========================
   SECTION BOX
========================= */
.dashboard-section[b-k767hq71lp] {
    background: #ffffff;

    border-radius: 14px;

    padding: 5px;

    margin-bottom: 18px;

    border: 1.5px solid #22297a;

    box-shadow:
        0 2px 6px rgba(15, 23, 42, 0.04),
        0 1px 2px rgba(15, 23, 42, 0.03);
}

/* =========================
   SECTION HEADER
========================= */
.section-header[b-k767hq71lp] {
    margin-bottom: 6px;
    padding-bottom: 4px;

    border-bottom: 1.5px solid #22297a;
}

.section-header h3[b-k767hq71lp] {
    margin: 0;

    font-size: 12px;
    font-weight: 700;

    color: #7a0808;
}
