/* /Pages/Analytics.razor.rz.scp.css */
.analytics-container[b-8nnh8n30r2] {
    padding: 2rem;
    background: #f8f9fa;
    min-height: 100vh;
}

.page-header[b-8nnh8n30r2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-header h2[b-8nnh8n30r2] {
    margin: 0;
    color: #2c3e50;
}

.header-controls[b-8nnh8n30r2] {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.period-selector[b-8nnh8n30r2] {
    min-width: 200px;
}

/* KPI Cards */
.kpi-grid[b-8nnh8n30r2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.kpi-card[b-8nnh8n30r2] {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.kpi-card:hover[b-8nnh8n30r2] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.kpi-icon[b-8nnh8n30r2] {
    font-size: 3rem;
    line-height: 1;
}

.kpi-content[b-8nnh8n30r2] {
    flex: 1;
}

.kpi-label[b-8nnh8n30r2] {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
}

.kpi-value[b-8nnh8n30r2] {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.kpi-trend[b-8nnh8n30r2] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.kpi-trend.up[b-8nnh8n30r2] {
    color: #00E396;
}

.kpi-trend.down[b-8nnh8n30r2] {
    color: #FF4560;
}

.kpi-trend.stable[b-8nnh8n30r2] {
    color: #775DD0;
}

.trend-icon[b-8nnh8n30r2] {
    font-weight: bold;
}

.trend-value[b-8nnh8n30r2] {
    font-weight: 600;
}

.trend-label[b-8nnh8n30r2] {
    color: #6c757d;
}

/* Charts Grid */
.charts-grid[b-8nnh8n30r2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
}

.chart-card[b-8nnh8n30r2] {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.chart-card.full-width[b-8nnh8n30r2] {
    grid-column: 1 / -1;
}

.chart-card h3[b-8nnh8n30r2] {
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-size: 1.25rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.chart-container[b-8nnh8n30r2] {
    min-height: 300px;
    position: relative;
}

.chart-stats[b-8nnh8n30r2] {
    display: flex;
    gap: 2rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.stat-item[b-8nnh8n30r2] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label[b-8nnh8n30r2] {
    font-size: 0.875rem;
    color: #6c757d;
}

.stat-value[b-8nnh8n30r2] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
}

.stat-value.revenue-color[b-8nnh8n30r2] {
    color: #008FFB;
}

.stat-value.profit-color[b-8nnh8n30r2] {
    color: #00E396;
}

.stat-value.margin-color[b-8nnh8n30r2] {
    color: #775DD0;
}

/* Currency Overview Section */
.currency-overview[b-8nnh8n30r2] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 2rem;
}

.currency-overview h3[b-8nnh8n30r2] {
    color: white;
    border-bottom-color: rgba(255,255,255,0.2);
}

.currency-kpi-grid[b-8nnh8n30r2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.currency-kpi-card[b-8nnh8n30r2] {
    background: rgba(255,255,255,0.95);
    border-radius: 8px;
    padding: 1.25rem;
    border-left: 4px solid #007bff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.currency-kpi-card:hover[b-8nnh8n30r2] {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.currency-header[b-8nnh8n30r2] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.currency-code[b-8nnh8n30r2] {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
}

.currency-badge[b-8nnh8n30r2] {
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.currency-amount[b-8nnh8n30r2] {
    font-size: 1.75rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.currency-percentage[b-8nnh8n30r2] {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

/* Analytics Tables */
.table-responsive[b-8nnh8n30r2] {
    overflow-x: auto;
    margin-top: 1rem;
}

.analytics-table[b-8nnh8n30r2] {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 0.875rem;
}

.analytics-table thead[b-8nnh8n30r2] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.analytics-table th[b-8nnh8n30r2] {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.3px;
    border: none;
}

.analytics-table th:first-child[b-8nnh8n30r2] {
    border-radius: 8px 0 0 0;
}

.analytics-table th:last-child[b-8nnh8n30r2] {
    border-radius: 0 8px 0 0;
}

.analytics-table tbody tr[b-8nnh8n30r2] {
    background: white;
    transition: background 0.2s;
}

.analytics-table tbody tr:hover[b-8nnh8n30r2] {
    background: #f8f9fa;
}

.analytics-table tbody tr:nth-child(even)[b-8nnh8n30r2] {
    background: #fafafa;
}

.analytics-table tbody tr:nth-child(even):hover[b-8nnh8n30r2] {
    background: #f8f9fa;
}

.analytics-table td[b-8nnh8n30r2] {
    padding: 12px 16px;
    border-bottom: 1px solid #e9ecef;
}

.analytics-table .table-total[b-8nnh8n30r2] {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%) !important;
    font-weight: 600;
}

.analytics-table .table-total:hover[b-8nnh8n30r2] {
    background: linear-gradient(135deg, #dee2e6 0%, #ced4da 100%) !important;
}

.analytics-table .text-right[b-8nnh8n30r2] {
    text-align: right;
}

.analytics-table .text-center[b-8nnh8n30r2] {
    text-align: center;
}

/* Analytics Summary Cards */
.analytics-summary[b-8nnh8n30r2] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.summary-card[b-8nnh8n30r2] {
    background: white;
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-left: 4px solid #007bff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.summary-card:hover[b-8nnh8n30r2] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.summary-card.revenue-summary[b-8nnh8n30r2] {
    border-left-color: #008FFB;
}

.summary-card.profit-summary[b-8nnh8n30r2] {
    border-left-color: #00E396;
}

.summary-card.cost-summary[b-8nnh8n30r2] {
    border-left-color: #FF4560;
}

.summary-card.margin-summary[b-8nnh8n30r2] {
    border-left-color: #775DD0;
}

.summary-icon[b-8nnh8n30r2] {
    font-size: 2rem;
    line-height: 1;
}

.summary-content[b-8nnh8n30r2] {
    flex: 1;
}

.summary-label[b-8nnh8n30r2] {
    font-size: 0.75rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value[b-8nnh8n30r2] {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

/* Badge Styles */
.badge[b-8nnh8n30r2] {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge.bg-primary[b-8nnh8n30r2] {
    background: #007bff !important;
    color: white;
}

.badge.bg-success[b-8nnh8n30r2] {
    background: #28a745 !important;
    color: white;
}

.badge.bg-warning[b-8nnh8n30r2] {
    background: #ffc107 !important;
    color: #212529;
}

.badge.bg-danger[b-8nnh8n30r2] {
    background: #dc3545 !important;
    color: white;
}

.badge.bg-info[b-8nnh8n30r2] {
    background: #17a2b8 !important;
    color: white;
}

.badge.bg-secondary[b-8nnh8n30r2] {
    background: #6c757d !important;
    color: white;
}

/* Performance Badges */
.performance-badge[b-8nnh8n30r2] {
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

.performance-badge.excellent[b-8nnh8n30r2] {
    background: #d4edda;
    color: #155724;
}

.performance-badge.good[b-8nnh8n30r2] {
    background: #fff3cd;
    color: #856404;
}

.performance-badge.needs-attention[b-8nnh8n30r2] {
    background: #f8d7da;
    color: #721c24;
}

/* Rank Badges */
.rank-badge[b-8nnh8n30r2] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.75rem;
    background: #e9ecef;
    color: #495057;
}

.rank-badge.top-1[b-8nnh8n30r2] {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #875a00;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.rank-badge.top-2[b-8nnh8n30r2] {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    color: #4a4a4a;
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.4);
}

.rank-badge.top-3[b-8nnh8n30r2] {
    background: linear-gradient(135deg, #cd7f32 0%, #daa06d 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(205, 127, 50, 0.4);
}

/* Profit Value Styling */
.profit-value[b-8nnh8n30r2] {
    color: #00E396;
    font-weight: 600;
}

/* Loading Overlay */
.loading-overlay[b-8nnh8n30r2] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
}

.loading-overlay p[b-8nnh8n30r2] {
    color: #6c757d;
    font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 768px) {
    .analytics-container[b-8nnh8n30r2] {
        padding: 1rem;
    }

    .page-header[b-8nnh8n30r2] {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .header-controls[b-8nnh8n30r2] {
        flex-direction: column;
    }

    .kpi-grid[b-8nnh8n30r2] {
        grid-template-columns: 1fr;
    }

    .charts-grid[b-8nnh8n30r2] {
        grid-template-columns: 1fr;
    }

    .chart-card.full-width[b-8nnh8n30r2] {
        grid-column: 1;
    }

    .chart-stats[b-8nnh8n30r2] {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .analytics-container[b-8nnh8n30r2] {
        padding: 0.75rem;
    }

    .kpi-grid[b-8nnh8n30r2] {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .charts-grid[b-8nnh8n30r2] {
        grid-template-columns: 1fr;
    }

    .kpi-value[b-8nnh8n30r2] {
        font-size: 1.4rem;
    }

    .currency-kpi-grid[b-8nnh8n30r2] {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .page-header[b-8nnh8n30r2],
    .header-controls[b-8nnh8n30r2] {
        display: none;
    }

    .analytics-container[b-8nnh8n30r2] {
        padding: 0;
        background: white;
    }

    .kpi-card[b-8nnh8n30r2],
    .chart-card[b-8nnh8n30r2] {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #dee2e6;
    }
}
/* /Pages/ContactDetail.razor.rz.scp.css */
.contact-profile-grid[b-5k0t2vo39p] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .contact-profile-grid[b-5k0t2vo39p] {
        grid-template-columns: 1fr;
    }
}

.contact-info-card[b-5k0t2vo39p],
.financial-card[b-5k0t2vo39p] {
    border-radius: 10px;
}

.contact-info-card .card-body[b-5k0t2vo39p],
.financial-card .card-body[b-5k0t2vo39p] {
    padding: 20px;
}

.section-title[b-5k0t2vo39p] {
    font-size: 13px;
    font-weight: 700;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 14px 0;
}

.info-grid[b-5k0t2vo39p] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-row[b-5k0t2vo39p] {
    display: flex;
    gap: 12px;
    align-items: baseline;
}

.info-label[b-5k0t2vo39p] {
    font-size: 12px;
    color: #9CA3AF;
    min-width: 90px;
    flex-shrink: 0;
}

.info-value[b-5k0t2vo39p] {
    font-size: 14px;
    color: #111827;
    word-break: break-word;
}

.info-value a[b-5k0t2vo39p] {
    color: #4F46E5;
    text-decoration: none;
}

.info-value a:hover[b-5k0t2vo39p] {
    text-decoration: underline;
}

.fin-row[b-5k0t2vo39p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #F3F4F6;
}

.fin-row:last-of-type[b-5k0t2vo39p] {
    border-bottom: none;
}

.fin-label[b-5k0t2vo39p] {
    font-size: 13px;
    color: #6B7280;
}

.fin-value[b-5k0t2vo39p] {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.fin-value.text-warning[b-5k0t2vo39p] {
    color: #D97706;
}

.fin-value.text-muted[b-5k0t2vo39p] {
    color: #9CA3AF;
}

.fin-stat-row[b-5k0t2vo39p] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.fin-stat[b-5k0t2vo39p] {
    background: #F9FAFB;
    border-radius: 8px;
    padding: 10px 12px;
    text-align: center;
}

.fin-stat-value[b-5k0t2vo39p] {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.fin-stat-label[b-5k0t2vo39p] {
    font-size: 11px;
    color: #6B7280;
    margin-top: 2px;
}

/* Tabs */
.tab-strip[b-5k0t2vo39p] {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #E5E7EB;
    padding: 0 16px;
    background: #F9FAFB;
    border-radius: 10px 10px 0 0;
    flex-wrap: wrap;
}

.tab-btn[b-5k0t2vo39p] {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: -2px;
    transition: color .15s, border-color .15s;
}

.tab-btn:hover[b-5k0t2vo39p] {
    color: #4F46E5;
}

.tab-btn.active[b-5k0t2vo39p] {
    color: #4F46E5;
    border-bottom-color: #4F46E5;
}

.tab-count[b-5k0t2vo39p] {
    background: #E0E7FF;
    color: #4F46E5;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    padding: 1px 7px;
    min-width: 20px;
    text-align: center;
}

.tab-btn.active .tab-count[b-5k0t2vo39p] {
    background: #4F46E5;
    color: #fff;
}

/* Empty state */
.empty-state[b-5k0t2vo39p] {
    text-align: center;
    padding: 48px 20px;
    color: #9CA3AF;
}

.empty-state p[b-5k0t2vo39p] {
    font-size: 15px;
    margin: 0;
}

/* Print button */
.btn-print[b-5k0t2vo39p] {
    background: none;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    padding: 3px 8px;
    cursor: pointer;
    font-size: 14px;
    color: #374151;
    transition: background .15s;
}

.btn-print:hover[b-5k0t2vo39p] {
    background: #F3F4F6;
}

/* Pagination inside tabs */
.tab-pagination[b-5k0t2vo39p] {
    border-top: 1px solid #E5E7EB;
    padding-top: 12px;
    margin-top: 8px;
}
/* /Pages/CorporateInvoicing.razor.rz.scp.css */
.corporate-invoicing-container[b-ljzjlcw4u8] {
    min-height: 100vh;
    background: #f5f7fa;
}

/* Customer searchable dropdown */
.doc-customer-wrapper[b-ljzjlcw4u8] {
    position: relative;
}

.doc-customer-input[b-ljzjlcw4u8] {
    padding-right: 28px !important;
}

.doc-customer-clear[b-ljzjlcw4u8] {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 11px;
    padding: 2px 4px;
    line-height: 1;
}

.doc-customer-clear:hover[b-ljzjlcw4u8] {
    color: #EF4444;
}

.doc-customer-dropdown[b-ljzjlcw4u8] {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 1000;
    max-height: 220px;
    overflow-y: auto;
}

.doc-customer-option[b-ljzjlcw4u8] {
    padding: 7px 12px;
    cursor: pointer;
    font-size: 13px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.1s;
}

.doc-customer-option:last-child[b-ljzjlcw4u8] {
    border-bottom: none;
}

.doc-customer-option:hover[b-ljzjlcw4u8] {
    background: #f8fafc;
}

.doc-customer-selected[b-ljzjlcw4u8] {
    background: #EEF2FF;
}

.doc-customer-name[b-ljzjlcw4u8] {
    font-weight: 600;
    color: #1a202c;
}

.doc-customer-selected .doc-customer-name[b-ljzjlcw4u8] {
    color: #4F46E5;
}

.doc-customer-meta[b-ljzjlcw4u8] {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
    display: flex;
    gap: 10px;
}

.page-header[b-ljzjlcw4u8] {
    background: white;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.page-header h1[b-ljzjlcw4u8] {
    margin: 0;
    font-size: 1.75rem;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-header h1 i[b-ljzjlcw4u8] {
    color: #4f46e5;
}

.header-actions[b-ljzjlcw4u8] {
    display: flex;
    gap: 0.75rem;
}

.invoicing-layout[b-ljzjlcw4u8] {
    display: flex;
    min-height: calc(100vh - 80px);
}

.invoicing-sidebar[b-ljzjlcw4u8] {
    width: 200px;
    background: white;
    border-right: 1px solid #e2e8f0;
    padding: 1rem 0;
    box-shadow: 1px 0 3px rgba(0, 0, 0, 0.05);
    overflow-y: auto;
}

.sidebar-nav[b-ljzjlcw4u8] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sidebar-nav .nav-item[b-ljzjlcw4u8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    color: #64748b;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    background: none;
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border-left: 3px solid transparent;
    word-wrap: break-word;
    white-space: normal;
}

.sidebar-nav .nav-item:hover[b-ljzjlcw4u8] {
    background: #f8fafc;
    color: #4f46e5;
}

.sidebar-nav .nav-item.active[b-ljzjlcw4u8] {
    background: #eef2ff;
    color: #4f46e5;
    font-weight: 600;
    border-left-color: #4f46e5;
}

.sidebar-nav .nav-item i[b-ljzjlcw4u8] {
    font-size: 1.5rem;
    width: auto;
}

.invoicing-content[b-ljzjlcw4u8] {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
}

.view-container[b-ljzjlcw4u8] {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.view-header[b-ljzjlcw4u8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.view-header h2[b-ljzjlcw4u8] {
    margin: 0;
    font-size: 1.5rem;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.view-header h2 i[b-ljzjlcw4u8] {
    color: #4f46e5;
}

/* Modal Styles */
.modal-overlay[b-ljzjlcw4u8] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 1rem;
    overflow-y: auto;
    pointer-events: auto;
}

.modal-dialog[b-ljzjlcw4u8] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    pointer-events: auto;
    position: relative;
    z-index: 1051;
}

.modal-print[b-ljzjlcw4u8] {
    max-width: 900px;
    width: 100%;
}

@media print {
    .modal-overlay[b-ljzjlcw4u8] {
        background: none !important;
        position: static !important;
    }
    
    .modal-print[b-ljzjlcw4u8] {
        max-width: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
}

.modal-dialog.modal-xl[b-ljzjlcw4u8] {
    max-width: 1200px;
}

.modal-header[b-ljzjlcw4u8] {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2[b-ljzjlcw4u8] {
    margin: 0;
    font-size: 1.5rem;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-header h2 i[b-ljzjlcw4u8] {
    color: #4f46e5;
}

.btn-close[b-ljzjlcw4u8] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #64748b;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s;
}

.btn-close:hover[b-ljzjlcw4u8] {
    color: #e53e3e;
}

.modal-body[b-ljzjlcw4u8] {
    padding: 1.5rem;
    pointer-events: auto;
}

.modal-footer[b-ljzjlcw4u8] {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    pointer-events: auto;
}

/* Form Styles */
.form-grid[b-ljzjlcw4u8] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-section[b-ljzjlcw4u8] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group[b-ljzjlcw4u8] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label[b-ljzjlcw4u8] {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.875rem;
}

.form-group .required[b-ljzjlcw4u8] {
    color: #e53e3e;
}

.form-control[b-ljzjlcw4u8] {
    padding: 0.5rem 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 0.9375rem;
    transition: border-color 0.2s;
    pointer-events: auto;
}

.form-control:focus[b-ljzjlcw4u8] {
    border-color: #4f46e5;
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-control-sm[b-ljzjlcw4u8] {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    pointer-events: auto;
}

/* Items Table */
.items-section[b-ljzjlcw4u8] {
    margin: 1.5rem 0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
    pointer-events: auto;
}

.section-header[b-ljzjlcw4u8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.section-header h3[b-ljzjlcw4u8] {
    margin: 0;
    font-size: 1.125rem;
    color: #2d3748;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.items-table[b-ljzjlcw4u8] {
    width: 100%;
    margin-bottom: 0;
    pointer-events: auto;
}

.items-table th[b-ljzjlcw4u8] {
    background: #f8fafc;
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #475569;
    border-bottom: 2px solid #e2e8f0;
}

.items-table td[b-ljzjlcw4u8] {
    padding: 0.5rem;
    vertical-align: middle;
}

.items-table input[b-ljzjlcw4u8] {
    width: 100%;
    pointer-events: auto;
}

/* Totals Section */
.totals-section[b-ljzjlcw4u8] {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.totals-box[b-ljzjlcw4u8] {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1rem;
}

.total-row[b-ljzjlcw4u8] {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9375rem;
    color: #475569;
}

.total-row.total-final[b-ljzjlcw4u8] {
    border-top: 2px solid #e2e8f0;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: #2d3748;
}

/* Table Styles */
.table-responsive[b-ljzjlcw4u8] {
    overflow-x: auto;
    margin-top: 1rem;
}

.table[b-ljzjlcw4u8] {
    width: 100%;
    border-collapse: collapse;
}

.table thead[b-ljzjlcw4u8] {
    background: #f8fafc;
}

.table th[b-ljzjlcw4u8] {
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: #475569;
    border-bottom: 2px solid #e2e8f0;
    font-size: 0.875rem;
}

.table td[b-ljzjlcw4u8] {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #2d3748;
}

.table tbody tr:hover[b-ljzjlcw4u8] {
    background: #f8fafc;
}

.text-center[b-ljzjlcw4u8] {
    text-align: center;
}

.text-muted[b-ljzjlcw4u8] {
    color: #94a3b8;
}

/* Badge Styles */
.badge[b-ljzjlcw4u8] {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.badge-primary[b-ljzjlcw4u8] {
    background: #dbeafe;
    color: #1e40af;
}

.badge-secondary[b-ljzjlcw4u8] {
    background: #f1f5f9;
    color: #475569;
}

.badge-success[b-ljzjlcw4u8] {
    background: #dcfce7;
    color: #166534;
}

.badge-danger[b-ljzjlcw4u8] {
    background: #fee2e2;
    color: #991b1b;
}

.badge-warning[b-ljzjlcw4u8] {
    background: #fef3c7;
    color: #92400e;
}

.badge-info[b-ljzjlcw4u8] {
    background: #e0f2fe;
    color: #075985;
}

.badge-dark[b-ljzjlcw4u8] {
    background: #e2e8f0;
    color: #1e293b;
}

/* Button Styles */
.btn[b-ljzjlcw4u8] {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: auto;
}

.btn-sm[b-ljzjlcw4u8] {
    padding: 0.375rem 0.75rem;
    font-size: 0.875rem;
    pointer-events: auto;
}

.btn-primary[b-ljzjlcw4u8] {
    background: #4f46e5;
    color: white;
}

.btn-primary:hover[b-ljzjlcw4u8] {
    background: #4338ca;
}

.btn-primary:disabled[b-ljzjlcw4u8] {
    background: #94a3b8;
    cursor: not-allowed;
}

.btn-secondary[b-ljzjlcw4u8] {
    background: #64748b;
    color: white;
}

.btn-secondary:hover[b-ljzjlcw4u8] {
    background: #475569;
}

.btn-success[b-ljzjlcw4u8] {
    background: #10b981;
    color: white;
}

.btn-success:hover[b-ljzjlcw4u8] {
    background: #059669;
}

.btn-danger[b-ljzjlcw4u8] {
    background: #ef4444;
    color: white;
}

.btn-danger:hover[b-ljzjlcw4u8] {
    background: #dc2626;
}

.btn-info[b-ljzjlcw4u8] {
    background: #3b82f6;
    color: white;
}

.btn-info:hover[b-ljzjlcw4u8] {
    background: #2563eb;
}

/* Validation Styles */
.validation-message[b-ljzjlcw4u8] {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .invoicing-layout[b-ljzjlcw4u8] {
        flex-direction: column;
    }

    .invoicing-sidebar[b-ljzjlcw4u8] {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .sidebar-nav[b-ljzjlcw4u8] {
        flex-direction: row;
        overflow-x: auto;
    }

    .sidebar-nav .nav-item[b-ljzjlcw4u8] {
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
    }

    .sidebar-nav .nav-item.active[b-ljzjlcw4u8] {
        border-left: none;
        border-bottom-color: #4f46e5;
    }

    .form-grid[b-ljzjlcw4u8] {
        grid-template-columns: 1fr;
    }

    .totals-section[b-ljzjlcw4u8] {
        grid-template-columns: 1fr;
    }

    .modal-dialog[b-ljzjlcw4u8] {
        max-width: 100%;
        margin: 0;
    }

    .table[b-ljzjlcw4u8] {
        font-size: 0.875rem;
    }

    .table th[b-ljzjlcw4u8],
    .table td[b-ljzjlcw4u8] {
        padding: 0.5rem;
    }
}

/* Note / Terms template bar */
.note-template-bar[b-ljzjlcw4u8] {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
    min-height: 24px;
}

.note-tpl-chip[b-ljzjlcw4u8] {
    background: #EEF2FF;
    color: #4F46E5;
    border: 1px solid #C7D2FE;
    border-radius: 12px;
    padding: 2px 10px;
    font-size: 11px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.15s;
}

.note-tpl-chip:hover[b-ljzjlcw4u8] {
    background: #E0E7FF;
}

.note-tpl-del[b-ljzjlcw4u8] {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 10px;
    cursor: pointer;
    padding: 0 2px;
    margin-left: -3px;
    line-height: 1;
}

.note-tpl-del:hover[b-ljzjlcw4u8] { color: #EF4444; }

.note-tpl-pin[b-ljzjlcw4u8] {
    background: none;
    border: none;
    font-size: 11px;
    cursor: pointer;
    padding: 0 2px;
    margin-left: -3px;
    line-height: 1;
    color: #cbd5e1;
}

.note-tpl-pin:hover[b-ljzjlcw4u8] { color: #F59E0B; }

.note-tpl-pin.is-default[b-ljzjlcw4u8] { color: #F59E0B; }

.note-tpl-save[b-ljzjlcw4u8] {
    background: none;
    border: 1px dashed #CBD5E1;
    border-radius: 12px;
    color: #64748b;
    font-size: 11px;
    padding: 2px 10px;
    cursor: pointer;
    transition: all 0.15s;
}

.note-tpl-save:hover[b-ljzjlcw4u8] {
    border-color: #4F46E5;
    color: #4F46E5;
}

.note-tpl-name-input[b-ljzjlcw4u8] {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 2px 10px;
    font-size: 11px;
    outline: none;
    width: 130px;
}

.note-tpl-name-input:focus[b-ljzjlcw4u8] {
    border-color: #4F46E5;
}

.note-tpl-cancel[b-ljzjlcw4u8] {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 12px;
    padding: 0 3px;
}

.note-tpl-cancel:hover[b-ljzjlcw4u8] { color: #EF4444; }

.note-tpl-pos-link[b-ljzjlcw4u8] {
    font-size: 11px;
    color: #4F46E5;
    text-decoration: none;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid #C7D2FE;
    background: #F5F3FF;
    transition: background 0.15s;
}

.note-tpl-pos-link:hover[b-ljzjlcw4u8] {
    background: #EDE9FE;
    text-decoration: none;
}

.note-tpl-editor[b-ljzjlcw4u8] {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.note-tpl-body-input[b-ljzjlcw4u8] {
    border-radius: 6px !important;
    font-size: 12px;
    resize: vertical;
}

.note-tpl-editor-actions[b-ljzjlcw4u8] {
    display: flex;
    gap: 6px;
    align-items: center;
}
/* /Pages/CreditNotes.razor.rz.scp.css */
/* Tabs Container */
.tabs-container[b-o45ylenvxh] {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid #E5E7EB;
}

.tab-button[b-o45ylenvxh] {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #6B7280;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: -2px;
}

.tab-button:hover[b-o45ylenvxh] {
    color: #4F46E5;
    background: #F3F4F6;
}

.tab-button.active[b-o45ylenvxh] {
    color: #4F46E5;
    border-bottom-color: #4F46E5;
    font-weight: 600;
}

/* Statistics Cards */
.stats-grid[b-o45ylenvxh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card[b-o45ylenvxh] {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #4F46E5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover[b-o45ylenvxh] {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.stat-card:nth-child(2)[b-o45ylenvxh] {
    border-left-color: #EF4444;
}

.stat-card:nth-child(3)[b-o45ylenvxh] {
    border-left-color: #F59E0B;
}

.stat-card:nth-child(4)[b-o45ylenvxh] {
    border-left-color: #10B981;
}

.stat-value[b-o45ylenvxh] {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.stat-label[b-o45ylenvxh] {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

.stat-icon[b-o45ylenvxh] {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 20px;
    opacity: 0.3;
}

/* Loading Spinner */
.spinner[b-o45ylenvxh] {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4F46E5;
    border-radius: 50%;
    animation: spin-b-o45ylenvxh 1s linear infinite;
}

@keyframes spin-b-o45ylenvxh {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Details Modal */
.sale-details[b-o45ylenvxh] {
    padding: 8px 0;
}

.detail-row[b-o45ylenvxh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 16px;
}

.detail-group label[b-o45ylenvxh] {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.detail-value[b-o45ylenvxh] {
    font-size: 14px;
    color: #111827;
    font-weight: 500;
}

.items-table[b-o45ylenvxh] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
}

.items-table thead[b-o45ylenvxh] {
    background: #F9FAFB;
}

.items-table th[b-o45ylenvxh] {
    padding: 10px 12px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #E5E7EB;
}

.items-table td[b-o45ylenvxh] {
    padding: 10px 12px;
    font-size: 13px;
    color: #1F2937;
    border-bottom: 1px solid #E5E7EB;
}

.items-table tbody tr:last-child td[b-o45ylenvxh] {
    border-bottom: none;
}

.items-table tbody tr:hover[b-o45ylenvxh] {
    background: #F9FAFB;
}

.items-table tfoot[b-o45ylenvxh] {
    background: #F9FAFB;
    font-weight: 600;
}

.items-table tfoot td[b-o45ylenvxh] {
    padding: 12px;
    border-top: 2px solid #E5E7EB;
}

.sale-summary[b-o45ylenvxh] {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 2px solid #E5E7EB;
}

.summary-row[b-o45ylenvxh] {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.summary-row.total[b-o45ylenvxh] {
    font-size: 18px;
    font-weight: 700;
    padding: 12px 0;
    border-top: 2px solid #E5E7EB;
    margin-top: 8px;
}

/* Form Elements */
.form-group[b-o45ylenvxh] {
    margin-bottom: 16px;
}

.form-group label[b-o45ylenvxh] {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.form-control[b-o45ylenvxh] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus[b-o45ylenvxh] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Alerts */
.alert[b-o45ylenvxh] {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

.alert-info[b-o45ylenvxh] {
    background: #EFF6FF;
    color: #1E40AF;
    border: 1px solid #BFDBFE;
}

.alert-danger[b-o45ylenvxh] {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* Modal Styling */
.modal-overlay[b-o45ylenvxh] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.modal-dialog[b-o45ylenvxh] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 600px;
    width: 100%;
    margin: auto;
    position: relative;
    animation: modalSlideIn-b-o45ylenvxh 0.3s ease-out;
}

@keyframes modalSlideIn-b-o45ylenvxh {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modal Adjustments */
.modal-dialog.modal-lg[b-o45ylenvxh] {
    max-width: 900px;
}

.modal-dialog.modal-print[b-o45ylenvxh] {
    max-width: 800px;
    width: 90vw;
    height: 90vh;
}

.modal-content[b-o45ylenvxh] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modal-header[b-o45ylenvxh] {
    padding: 20px 24px;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #F9FAFB;
    flex-shrink: 0;
}

.modal-header h2[b-o45ylenvxh],
.modal-header h3[b-o45ylenvxh] {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #111827;
}

.modal-header .print-mode-toggle[b-o45ylenvxh] {
    display: flex;
    gap: 8px;
    margin-left: 16px;
}

.mode-btn[b-o45ylenvxh] {
    padding: 8px 16px;
    border: 2px solid rgba(79, 70, 229, 0.2);
    background: white;
    color: #4F46E5;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.2s;
    font-weight: 500;
}

.mode-btn:hover[b-o45ylenvxh] {
    background: #F3F4F6;
    border-color: #4F46E5;
}

.mode-btn.active[b-o45ylenvxh] {
    background: #4F46E5;
    color: white;
    border-color: #4F46E5;
}

.modal-body[b-o45ylenvxh] {
    padding: 24px;
    max-height: 70vh;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.modal-dialog.modal-print .modal-body[b-o45ylenvxh] {
    padding: 0;
}

.modal-dialog.modal-print .modal-body iframe[b-o45ylenvxh] {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.modal-footer[b-o45ylenvxh] {
    padding: 16px 24px;
    border-top: 1px solid #E5E7EB;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-shrink: 0;
}


.close-button[b-o45ylenvxh] {
    background: #EF4444;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.close-button:hover[b-o45ylenvxh] {
    background: #DC2626;
}

.btn-close[b-o45ylenvxh] {
    background: #6B7280;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    padding: 0;
}

.btn-close:hover[b-o45ylenvxh] {
    background: #4B5563;
}

.btn-close span[b-o45ylenvxh] {
    line-height: 1;
}

/* Text Utilities */
.text-danger[b-o45ylenvxh] {
    color: #DC2626 !important;
}

.text-success[b-o45ylenvxh] {
    color: #059669 !important;
}

.text-muted[b-o45ylenvxh] {
    color: #9CA3AF !important;
}

/* Badge Enhancements */
.badge[b-o45ylenvxh] {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.badge.bg-danger[b-o45ylenvxh] {
    background: #FEE2E2;
    color: #991B1B;
}

.badge.bg-warning[b-o45ylenvxh] {
    background: #FEF3C7;
    color: #92400E;
}

/* Button Enhancements */
.btn-primary[b-o45ylenvxh] {
    background: #4F46E5;
    color: white;
}

.btn-primary:hover[b-o45ylenvxh] {
    background: #4338CA;
}

.btn-danger[b-o45ylenvxh] {
    background: #EF4444;
    color: white;
}

.btn-danger:hover:not(:disabled)[b-o45ylenvxh] {
    background: #DC2626;
}

.btn-danger:disabled[b-o45ylenvxh] {
    background: #9CA3AF;
    cursor: not-allowed;
}

.btn-icon.btn-primary[b-o45ylenvxh] {
    background: #4F46E5;
    color: white;
}

.btn-icon.btn-primary:hover[b-o45ylenvxh] {
    background: #4338CA;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid[b-o45ylenvxh] {
        grid-template-columns: repeat(2, 1fr);
    }

    .tabs-container[b-o45ylenvxh] {
        flex-wrap: wrap;
        gap: 4px;
    }

    .tab-button[b-o45ylenvxh] {
        padding: 10px 16px;
        font-size: 13px;
    }

    .page-header[b-o45ylenvxh] {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-actions[b-o45ylenvxh] {
        width: 100%;
        flex-wrap: wrap;
    }

    .page-actions .btn[b-o45ylenvxh] {
        flex: 1;
        justify-content: center;
    }

    .card-header[b-o45ylenvxh] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box[b-o45ylenvxh] {
        width: 100%;
    }

    .filter-group[b-o45ylenvxh] {
        flex-wrap: wrap;
    }

    .filter-group select[b-o45ylenvxh] {
        flex: 1;
        min-width: 140px;
    }

    .detail-row[b-o45ylenvxh] {
        grid-template-columns: 1fr;
    }

    .modal-overlay[b-o45ylenvxh] {
        padding: 0;
        align-items: flex-end;
    }

    .modal-content[b-o45ylenvxh],
    .modal-dialog[b-o45ylenvxh] {
        max-width: 100% !important;
        max-height: 95vh;
        border-radius: 12px 12px 0 0;
        margin: 0;
    }

    .table-container[b-o45ylenvxh] {
        overflow-x: auto;
    }

    .data-table[b-o45ylenvxh] {
        min-width: 700px;
    }
}

@media (max-width: 480px) {
    .stats-grid[b-o45ylenvxh] {
        grid-template-columns: 1fr;
    }

    .stat-value[b-o45ylenvxh] {
        font-size: 24px;
    }

    .tab-button[b-o45ylenvxh] {
        flex: 1;
        text-align: center;
        padding: 8px 10px;
        font-size: 12px;
    }
}
/* /Pages/Customers.razor.rz.scp.css */
/* Page Layout - removed centering */

/* Page Header */
.page-header[b-fmbxey9xkn] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.page-header h1[b-fmbxey9xkn] {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
}

.page-header p[b-fmbxey9xkn] {
    color: #6B7280;
    margin: 0;
    font-size: 14px;
}

.page-actions[b-fmbxey9xkn] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Statistics Cards */
.stats-grid[b-fmbxey9xkn] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card[b-fmbxey9xkn] {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #4F46E5;
    position: relative;
    min-height: 70px;
    transition: all 0.2s ease;
    border: 1px solid #F3F4F6;
}

.stat-card:hover[b-fmbxey9xkn] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.stat-value[b-fmbxey9xkn] {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.stat-label[b-fmbxey9xkn] {
    font-size: 12px;
    color: #6B7280;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stat-icon[b-fmbxey9xkn] {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 20px;
    opacity: 0.7;
}

/* Card */
.card[b-fmbxey9xkn] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #F3F4F6;
}

.card-header[b-fmbxey9xkn] {
    padding: 20px;
    border-bottom: 2px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: #F9FAFB;
}

/* Search and Filter */
.search-box[b-fmbxey9xkn] {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
}

.search-box input[b-fmbxey9xkn] {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.search-box input:focus[b-fmbxey9xkn] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.filter-group[b-fmbxey9xkn] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-group select[b-fmbxey9xkn] {
    padding: 10px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-group select:focus[b-fmbxey9xkn] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Table */
.table-responsive[b-fmbxey9xkn] {
    overflow-x: auto;
}

.table[b-fmbxey9xkn] {
    width: 100%;
    border-collapse: collapse;
}

.table thead[b-fmbxey9xkn] {
    background: #F9FAFB;
}

.table thead th[b-fmbxey9xkn] {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #E5E7EB;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.table thead th:hover[b-fmbxey9xkn] {
    background: #F3F4F6;
}

.table tbody td[b-fmbxey9xkn] {
    padding: 16px;
    border-bottom: 1px solid #F3F4F6;
    font-size: 14px;
    color: #111827;
}

.table tbody tr:hover[b-fmbxey9xkn] {
    background: #F9FAFB;
}

.table .text-end[b-fmbxey9xkn] {
    text-align: right;
}

.actions-column[b-fmbxey9xkn] {
    width: 120px;
    text-align: right;
}

.btn-actions[b-fmbxey9xkn] {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.btn-icon[b-fmbxey9xkn] {
    background: transparent;
    border: none;
    padding: 6px 8px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-icon:hover[b-fmbxey9xkn] {
    background: #F3F4F6;
    transform: scale(1.1);
}

/* Badges */
.badge[b-fmbxey9xkn] {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: inline-block;
}

.badge.bg-success[b-fmbxey9xkn] {
    background: #D1FAE5;
    color: #065F46;
}

.badge.bg-danger[b-fmbxey9xkn] {
    background: #FEE2E2;
    color: #991B1B;
}

.badge.bg-secondary[b-fmbxey9xkn] {
    background: #F3F4F6;
    color: #4B5563;
}

.badge.bg-warning[b-fmbxey9xkn] {
    background: #FEF3C7;
    color: #92400E;
}

/* Table Footer */
.table-footer[b-fmbxey9xkn] {
    padding: 16px 20px;
    border-top: 2px solid #F3F4F6;
    background: #F9FAFB;
}

.pagination-info[b-fmbxey9xkn] {
    font-size: 13px;
    color: #6B7280;
}

/* Buttons */
.btn[b-fmbxey9xkn] {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary[b-fmbxey9xkn] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover[b-fmbxey9xkn] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-fmbxey9xkn] {
    background: #F3F4F6;
    color: #374151;
}

.btn-secondary:hover[b-fmbxey9xkn] {
    background: #E5E7EB;
}

.btn-danger[b-fmbxey9xkn] {
    background: #DC2626;
    color: white;
}

.btn-danger:hover[b-fmbxey9xkn] {
    background: #B91C1C;
}

/* Modal */
.modal-overlay[b-fmbxey9xkn] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-dialog[b-fmbxey9xkn] {
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-dialog.modal-lg[b-fmbxey9xkn] {
    max-width: 900px;
}

.modal-content[b-fmbxey9xkn] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown-b-fmbxey9xkn 0.3s ease;
}

@keyframes slideDown-b-fmbxey9xkn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-fmbxey9xkn] {
    padding: 24px;
    border-bottom: 2px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.modal-header.bg-danger[b-fmbxey9xkn] {
    background: linear-gradient(135deg, #DC2626, #991B1B);
}

.modal-header h2[b-fmbxey9xkn] {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.close-button[b-fmbxey9xkn] {
    background: transparent;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.close-button:hover[b-fmbxey9xkn] {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body[b-fmbxey9xkn] {
    padding: 24px;
    max-height: calc(90vh - 180px);
    overflow-y: auto;
}

.modal-footer[b-fmbxey9xkn] {
    padding: 20px 24px;
    border-top: 2px solid #F3F4F6;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: #F9FAFB;
}

/* Forms */
.form-row[b-fmbxey9xkn] {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row.col-md-6[b-fmbxey9xkn] {
    grid-template-columns: repeat(2, 1fr);
}

.form-row .col-md-6[b-fmbxey9xkn] {
    grid-column: span 1;
}

.form-row .col-md-8[b-fmbxey9xkn] {
    grid-column: span 2;
}

.form-row .col-md-4[b-fmbxey9xkn] {
    grid-column: span 1;
}

.form-group[b-fmbxey9xkn] {
    margin-bottom: 16px;
}

.form-group label[b-fmbxey9xkn] {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.form-control[b-fmbxey9xkn] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.form-control:focus[b-fmbxey9xkn] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-text[b-fmbxey9xkn] {
    display: block;
    margin-top: 4px;
    font-size: 12px;
}

.text-muted[b-fmbxey9xkn] {
    color: #9CA3AF;
}

.toggle-switch label[b-fmbxey9xkn] {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

/* Loading State */
.loading-state[b-fmbxey9xkn] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* Alert */
.alert[b-fmbxey9xkn] {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-danger[b-fmbxey9xkn] {
    background: #FEE2E2;
    border: 1px solid #FCA5A5;
    color: #991B1B;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header[b-fmbxey9xkn] {
        flex-direction: column;
        align-items: stretch;
    }

    .page-actions[b-fmbxey9xkn] {
        width: 100%;
    }

    .stats-grid[b-fmbxey9xkn] {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row[b-fmbxey9xkn] {
        grid-template-columns: 1fr !important;
    }

    .form-row .col-md-6[b-fmbxey9xkn],
    .form-row .col-md-8[b-fmbxey9xkn],
    .form-row .col-md-4[b-fmbxey9xkn] {
        grid-column: span 1 !important;
    }

    .search-box[b-fmbxey9xkn] {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-grid[b-fmbxey9xkn] {
        grid-template-columns: 1fr;
    }

    .modal-dialog[b-fmbxey9xkn] {
        max-width: 100%;
        padding: 0;
    }
}
/* /Pages/Login.razor.rz.scp.css */
.login-page[b-ipnrw36syy] {
    --login-bg-1: #0f172a;
    --login-bg-2: #1e3a5f;
    --login-bg-3: #0b3d2e;
    --login-accent: #f59e0b;
    min-height: calc(100vh - 3.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, var(--login-bg-1), var(--login-bg-2), var(--login-bg-3));
    background-size: 180% 180%;
    transition: background 0.8s ease, filter 0.8s ease;
}

.login-page.theme-a[b-ipnrw36syy] {
    --login-bg-1: #0f172a;
    --login-bg-2: #1e3a5f;
    --login-bg-3: #0b3d2e;
    --login-accent: #f59e0b;
}

.login-page.theme-b[b-ipnrw36syy] {
    --login-bg-1: #1f2937;
    --login-bg-2: #134e4a;
    --login-bg-3: #0f172a;
    --login-accent: #22c55e;
}

.login-page.theme-c[b-ipnrw36syy] {
    --login-bg-1: #172554;
    --login-bg-2: #334155;
    --login-bg-3: #052e16;
    --login-accent: #38bdf8;
}

.login-page.theme-d[b-ipnrw36syy] {
    --login-bg-1: #312e81;
    --login-bg-2: #1f2937;
    --login-bg-3: #14532d;
    --login-accent: #f97316;
}

.login-page.theme-e[b-ipnrw36syy] {
    --login-bg-1: #7f1d1d;
    --login-bg-2: #dc2626;
    --login-bg-3: #1f2937;
    --login-accent: #fca5a5;
}

.login-page.theme-f[b-ipnrw36syy] {
    --login-bg-1: #0d3b3b;
    --login-bg-2: #065f46;
    --login-bg-3: #064e3b;
    --login-accent: #6ee7b7;
}

.login-page.theme-g[b-ipnrw36syy] {
    --login-bg-1: #4c1d95;
    --login-bg-2: #5b21b6;
    --login-bg-3: #2d1b69;
    --login-accent: #d8b4fe;
}

.login-page.theme-h[b-ipnrw36syy] {
    --login-bg-1: #0f172a;
    --login-bg-2: #1e3a8a;
    --login-bg-3: #1f2937;
    --login-accent: #60a5fa;
}

.login-background-overlay[b-ipnrw36syy] {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 20%, rgba(245, 158, 11, 0.22), transparent 36%),
        radial-gradient(circle at 80% 25%, rgba(56, 189, 248, 0.18), transparent 38%),
        radial-gradient(circle at 50% 85%, rgba(16, 185, 129, 0.18), transparent 34%);
    filter: saturate(108%);
    animation: overlayDrift-b-ipnrw36syy 24s ease-in-out infinite;
}

.login-shell[b-ipnrw36syy] {
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 1;
}

.login-card[b-ipnrw36syy] {
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 45px rgba(2, 6, 23, 0.34);
}

.login-header .card-title[b-ipnrw36syy] {
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #0f172a;
}

.login-subtitle[b-ipnrw36syy] {
    color: #475569;
    font-size: 0.95rem;
}

.form-label[b-ipnrw36syy] {
    font-weight: 600;
    color: #1e293b;
}

.form-control[b-ipnrw36syy] {
    border-radius: 0.65rem;
    border-color: #cbd5e1;
}

.form-control:focus[b-ipnrw36syy] {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.2);
}

.input-group > .btn[b-ipnrw36syy] {
    border-top-right-radius: 0.65rem;
    border-bottom-right-radius: 0.65rem;
}

.login-btn[b-ipnrw36syy] {
    border-radius: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 0.7rem 1rem;
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
    border: none;
}

.login-btn:hover:enabled[b-ipnrw36syy] {
    filter: brightness(1.03);
}

.login-tip[b-ipnrw36syy] {
    border-left: 4px solid var(--login-accent);
    border-radius: 0.45rem;
    background: #fffbeb;
    color: #5b3a00;
    padding: 0.75rem 0.85rem;
    font-size: 0.9rem;
}

@keyframes overlayDrift-b-ipnrw36syy {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(0, -8px, 0) scale(1.02);
    }

    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@media (max-width: 575.98px) {
    .login-page[b-ipnrw36syy] {
        min-height: calc(100vh - 3rem);
        padding: 1rem 0.75rem;
    }

    .login-card[b-ipnrw36syy] {
        border-radius: 0.8rem;
    }

    .login-tip[b-ipnrw36syy] {
        font-size: 0.85rem;
    }
}

/* Theme Selector Modal Styles */
.theme-selector-overlay[b-ipnrw36syy] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
    padding: 1rem;
}

.theme-selector-modal[b-ipnrw36syy] {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
}

.theme-selector-header[b-ipnrw36syy] {
    text-align: center;
    margin-bottom: 2rem;
}

.theme-selector-header h4[b-ipnrw36syy] {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.theme-selector-header p[b-ipnrw36syy] {
    color: #64748b;
    font-size: 0.95rem;
}

.theme-grid[b-ipnrw36syy] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.theme-card[b-ipnrw36syy] {
    position: relative;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.theme-card:hover[b-ipnrw36syy] {
    border-color: #94a3b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.theme-card.selected[b-ipnrw36syy] {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.theme-preview[b-ipnrw36syy] {
    height: 80px;
    background: linear-gradient(120deg, var(--bg-1), var(--bg-2), var(--bg-3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-label[b-ipnrw36syy] {
    padding: 0.75rem;
    text-align: center;
    background: #f8fafc;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
}

.theme-name[b-ipnrw36syy] {
    display: block;
    margin-bottom: 0.25rem;
}

.theme-accent[b-ipnrw36syy] {
    font-size: 0.75rem;
    color: #94a3b8;
}

.theme-selector-actions[b-ipnrw36syy] {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.theme-selector-actions button[b-ipnrw36syy] {
    border-radius: 0.65rem;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-theme[b-ipnrw36syy] {
    background: linear-gradient(90deg, #2563eb, #0ea5e9);
    color: white;
    flex: 1;
    max-width: 200px;
}

.btn-select-theme:hover[b-ipnrw36syy] {
    filter: brightness(1.05);
}

.btn-skip-theme[b-ipnrw36syy] {
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #cbd5e1;
    flex: 1;
    max-width: 200px;
}

.btn-skip-theme:hover[b-ipnrw36syy] {
    background: #e2e8f0;
}

@media (max-width: 575.98px) {
    .theme-selector-modal[b-ipnrw36syy] {
        padding: 1.5rem;
    }

    .theme-grid[b-ipnrw36syy] {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.75rem;
    }

    .theme-preview[b-ipnrw36syy] {
        height: 60px;
    }

    .theme-label[b-ipnrw36syy] {
        font-size: 0.8rem;
    }
}

/* /Pages/MyShifts.razor.rz.scp.css */
/* My Shifts Page Styles */

.stats-grid[b-w7eyhtpbgm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card[b-w7eyhtpbgm] {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover[b-w7eyhtpbgm] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.stat-icon[b-w7eyhtpbgm] {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.stat-content[b-w7eyhtpbgm] {
    flex: 1;
}

.stat-value[b-w7eyhtpbgm] {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 5px;
}

.stat-label[b-w7eyhtpbgm] {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.stat-sublabel[b-w7eyhtpbgm] {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 5px;
}

/* Tabs */
.tabs-container[b-w7eyhtpbgm] {
    background: white;
    border-radius: 12px;
    padding: 5px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tabs[b-w7eyhtpbgm] {
    display: flex;
    gap: 5px;
}

.tab-button[b-w7eyhtpbgm] {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.tab-button i[b-w7eyhtpbgm] {
    font-size: 18px;
}

.tab-button:hover[b-w7eyhtpbgm] {
    background: #f1f5f9;
    color: #4F46E5;
}

.tab-button.active[b-w7eyhtpbgm] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* Shift Cards */
.shift-card[b-w7eyhtpbgm] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
}

.shift-card.open[b-w7eyhtpbgm] {
    border: 2px solid #22c55e;
}

.shift-card-header[b-w7eyhtpbgm] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.shift-card-header h3[b-w7eyhtpbgm] {
    margin: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.shift-badge[b-w7eyhtpbgm] {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.shift-badge.open[b-w7eyhtpbgm] {
    background: #22c55e;
    color: white;
}

.shift-card-body[b-w7eyhtpbgm] {
    padding: 20px;
}

.shift-info-grid[b-w7eyhtpbgm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.shift-info-item[b-w7eyhtpbgm] {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.shift-info-item label[b-w7eyhtpbgm] {
    font-size: 12px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shift-info-item span[b-w7eyhtpbgm] {
    font-size: 18px;
    font-weight: 700;
    color: #1a202c;
}

.shift-actions[b-w7eyhtpbgm] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Empty State */
.empty-state[b-w7eyhtpbgm] {
    background: white;
    border-radius: 12px;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.empty-state i[b-w7eyhtpbgm] {
    font-size: 64px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.empty-state h3[b-w7eyhtpbgm] {
    font-size: 24px;
    color: #1a202c;
    margin-bottom: 10px;
}

.empty-state p[b-w7eyhtpbgm] {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
}

/* Audit Badges */
.audit-badge[b-w7eyhtpbgm] {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.audit-badge-success[b-w7eyhtpbgm] {
    background: #dcfce7;
    color: #16a34a;
}

.audit-badge-warning[b-w7eyhtpbgm] {
    background: #fef3c7;
    color: #d97706;
}

.audit-badge-info[b-w7eyhtpbgm] {
    background: #dbeafe;
    color: #2563eb;
}

.audit-badge-primary[b-w7eyhtpbgm] {
    background: #e0e7ff;
    color: #4f46e5;
}

.audit-badge-secondary[b-w7eyhtpbgm] {
    background: #f1f5f9;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-grid[b-w7eyhtpbgm] {
        grid-template-columns: 1fr;
    }
    
    .tabs[b-w7eyhtpbgm] {
        flex-direction: column;
    }
    
    .shift-info-grid[b-w7eyhtpbgm] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid[b-w7eyhtpbgm] {
        grid-template-columns: 1fr;
    }
}
/* /Pages/Orders.razor.rz.scp.css */
/* Orders Page Styles - removed centering */

/* Page Header */
.page-header[b-8wojc9b9xz] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
    padding: 32px;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
    position: relative;
    overflow: hidden;
}

.page-header[b-8wojc9b9xz]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 70%);
    pointer-events: none;
}

.page-header h1[b-8wojc9b9xz] {
    font-size: 32px;
    color: white;
    margin: 0 0 6px 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-header p[b-8wojc9b9xz] {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.page-actions[b-8wojc9b9xz] {
    display: flex;
    gap: 12px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

/* Statistics Cards */
.stats-grid[b-8wojc9b9xz] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card[b-8wojc9b9xz] {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #4F46E5;
    position: relative;
    transition: all 0.2s ease;
    border: 1px solid #F3F4F6;
}

.stat-card:hover[b-8wojc9b9xz] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.stat-value[b-8wojc9b9xz] {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.stat-label[b-8wojc9b9xz] {
    font-size: 13px;
    color: #6B7280;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stat-icon[b-8wojc9b9xz] {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    opacity: 0.6;
}

/* Card */
.card[b-8wojc9b9xz] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #F3F4F6;
}

.card-header[b-8wojc9b9xz] {
    padding: 20px;
    border-bottom: 2px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    background: #F9FAFB;
}

/* Search Box */
.search-box[b-8wojc9b9xz] {
    flex: 1;
    min-width: 280px;
    position: relative;
}

.search-box i[b-8wojc9b9xz] {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 16px;
}

.search-box input[b-8wojc9b9xz] {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: white;
}

.search-box input:hover[b-8wojc9b9xz] {
    border-color: #D1D5DB;
}

.search-box input:focus[b-8wojc9b9xz] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.filter-group[b-8wojc9b9xz] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-group select[b-8wojc9b9xz] {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 14px;
    background: white;
    transition: all 0.2s ease;
    cursor: pointer;
    font-weight: 500;
}

.filter-group select:hover[b-8wojc9b9xz] {
    border-color: #D1D5DB;
}

.filter-group select:focus[b-8wojc9b9xz] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Table Container */
.table-container[b-8wojc9b9xz] {
    overflow-x: auto;
    max-height: 600px;
    overflow-y: auto;
}

.data-table[b-8wojc9b9xz] {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.data-table thead[b-8wojc9b9xz] {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #F9FAFB;
}

.data-table thead th[b-8wojc9b9xz] {
    background: #F9FAFB;
    padding: 16px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #E5E7EB;
}

.data-table tbody tr[b-8wojc9b9xz] {
    border-bottom: 1px solid #F3F4F6;
    transition: background-color 0.2s ease;
}

.data-table tbody tr:hover[b-8wojc9b9xz] {
    background: #F9FAFB;
}

.data-table tbody tr:last-child[b-8wojc9b9xz] {
    border-bottom: none;
}

.data-table td[b-8wojc9b9xz] {
    padding: 16px;
    font-size: 14px;
    color: #374151;
}

.text-center[b-8wojc9b9xz] {
    text-align: center;
}

.text-muted[b-8wojc9b9xz] {
    color: #9CA3AF;
}

.text-danger[b-8wojc9b9xz] {
    color: #EF4444;
}

.empty-state[b-8wojc9b9xz] {
    padding: 48px 24px;
    text-align: center;
}

.empty-state p[b-8wojc9b9xz] {
    margin-top: 12px;
    color: #6B7280;
    font-size: 16px;
}

/* Status Badges */
.status-badge[b-8wojc9b9xz] {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-pending[b-8wojc9b9xz] {
    background: rgba(245, 158, 11, 0.15);
    color: #D97706;
}

.status-preparing[b-8wojc9b9xz] {
    background: rgba(59, 130, 246, 0.15);
    color: #2563EB;
}

.status-ready[b-8wojc9b9xz] {
    background: rgba(139, 92, 246, 0.15);
    color: #7C3AED;
}

.status-completed[b-8wojc9b9xz] {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
}

.status-cancelled[b-8wojc9b9xz] {
    background: rgba(239, 68, 68, 0.15);
    color: #DC2626;
}

/* Table Badge */
.table-badge[b-8wojc9b9xz] {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
}

.price[b-8wojc9b9xz] {
    color: #4F46E5;
    font-size: 15px;
}

/* Action Buttons */
.action-buttons[b-8wojc9b9xz] {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.btn-icon[b-8wojc9b9xz] {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: #F3F4F6;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 14px;
}

.btn-icon:hover[b-8wojc9b9xz] {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-icon.btn-success[b-8wojc9b9xz] {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.btn-icon.btn-success:hover[b-8wojc9b9xz] {
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
}

.btn-icon.btn-info[b-8wojc9b9xz] {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
    color: white;
}

.btn-icon.btn-info:hover[b-8wojc9b9xz] {
    box-shadow: 0 4px 8px rgba(139, 92, 246, 0.4);
}

.btn-icon.btn-danger[b-8wojc9b9xz] {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
}

.btn-icon.btn-danger:hover[b-8wojc9b9xz] {
    box-shadow: 0 4px8px rgba(239, 68, 68, 0.4);
}

/* Buttons */
.btn[b-8wojc9b9xz] {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: inherit;
    font-size: 14px;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary[b-8wojc9b9xz] {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    color: white;
}

.btn-primary:hover[b-8wojc9b9xz] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(79, 70, 229, 0.4);
}

.btn-outline[b-8wojc9b9xz] {
    background: white;
    border: 2px solid #E5E7EB;
    color: #374151;
}

.btn-outline:hover[b-8wojc9b9xz] {
    border-color: #4F46E5;
    color: #4F46E5;
    background: #F9FAFB;
}

.btn-danger[b-8wojc9b9xz] {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: white;
}

.btn-danger:hover[b-8wojc9b9xz] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(239, 68, 68, 0.4);
}

/* Modal */
.modal-overlay[b-8wojc9b9xz] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
    padding: 20px;
}

.modal-content[b-8wojc9b9xz] {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn-b-8wojc9b9xz 0.3s ease-out;
}

@keyframes modalSlideIn-b-8wojc9b9xz {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-8wojc9b9xz] {
    padding: 24px;
    border-bottom: 2px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F9FAFB;
}

.modal-header h2[b-8wojc9b9xz] {
    margin: 0;
    font-size: 24px;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-close[b-8wojc9b9xz] {
    width: 36px;
    height: 36px;
    border: none;
    background: #F3F4F6;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #6B7280;
}

.btn-close:hover[b-8wojc9b9xz] {
    background: #E5E7EB;
    color: #374151;
}

.modal-body[b-8wojc9b9xz] {
    padding: 24px;
}

.modal-footer[b-8wojc9b9xz] {
    padding: 20px 24px;
    border-top: 2px solid #F3F4F6;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: #F9FAFB;
}

/* Order Details */
.order-details-grid[b-8wojc9b9xz] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.detail-group[b-8wojc9b9xz] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-group label[b-8wojc9b9xz] {
    font-size: 12px;
    color: #6B7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-group span[b-8wojc9b9xz] {
    font-size: 14px;
    color: #111827;
    font-weight: 500;
}

.section-title[b-8wojc9b9xz] {
    font-size: 18px;
    color: #111827;
    margin: 24px 0 16px 0;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 2px solid #F3F4F6;
}

/* Order Items List */
.order-items-list[b-8wojc9b9xz] {
    background: #F9FAFB;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.order-item[b-8wojc9b9xz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
}

.order-item:last-child[b-8wojc9b9xz] {
    border-bottom: none;
    padding-bottom: 0;
}

.item-details[b-8wojc9b9xz] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-name[b-8wojc9b9xz] {
    font-weight: 600;
    color: #111827;
}

.item-qty[b-8wojc9b9xz] {
    padding: 4px 10px;
    background: white;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #6B7280;
}

.item-price[b-8wojc9b9xz] {
    font-weight: 700;
    color: #4F46E5;
    font-size: 15px;
}

/* Order Summary */
.order-summary[b-8wojc9b9xz] {
    background: white;
    border: 2px solid #F3F4F6;
    border-radius: 12px;
    padding: 16px;
    margin-top: 20px;
}

.summary-row[b-8wojc9b9xz] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: #6B7280;
}

.summary-row.total[b-8wojc9b9xz] {
    border-top: 2px solid #E5E7EB;
    margin-top: 8px;
    padding-top: 16px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.order-notes[b-8wojc9b9xz] {
    margin-top: 20px;
    padding: 16px;
    background: #FFF7ED;
    border-left: 4px solid #F59E0B;
    border-radius: 8px;
}

.order-notes label[b-8wojc9b9xz] {
    font-size: 12px;
    color: #92400E;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.order-notes p[b-8wojc9b9xz] {
    margin: 0;
    color: #78350F;
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid[b-8wojc9b9xz] {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header[b-8wojc9b9xz] {
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
    }

    .page-header h1[b-8wojc9b9xz] {
        font-size: 26px;
    }

    .page-actions[b-8wojc9b9xz] {
        margin-top: 16px;
    }

    .stats-grid[b-8wojc9b9xz] {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-header[b-8wojc9b9xz] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box[b-8wojc9b9xz] {
        min-width: 100%;
    }

    .table-container[b-8wojc9b9xz] {
        overflow-x: auto;
    }

    .data-table[b-8wojc9b9xz] {
        min-width: 800px;
    }

    .modal-content[b-8wojc9b9xz] {
        max-height: 95vh;
    }

    .order-details-grid[b-8wojc9b9xz] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid[b-8wojc9b9xz] {
        grid-template-columns: 1fr;
    }

    .page-header h1[b-8wojc9b9xz] {
        font-size: 22px;
    }

    .btn[b-8wojc9b9xz] {
        padding: 10px 18px;
        font-size: 13px;
    }
}
/* /Pages/POS.razor.rz.scp.css */
/* POS Page Styles - Matching PHP Version */

/* Global Styles */
[b-ya5aaiwjb5] body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background:  #F3F4F6;
    overflow: hidden;
    height: 100vh;
    margin: 0;
    padding: 0;
}

/* Windows-style Title Bar */
.title-bar[b-ya5aaiwjb5] {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    user-select: none;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
    position: relative;
}

.title-bar-left[b-ya5aaiwjb5] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-icon[b-ya5aaiwjb5] {
    font-size: 14px;
}

.app-title[b-ya5aaiwjb5] {
    font-size: 11px;
    font-weight: 500;
}

.title-bar-controls[b-ya5aaiwjb5] {
    display: flex;
}

.title-bar-btn[b-ya5aaiwjb5] {
    width: 42px;
    height: 28px;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: background 0.2s;
}

.title-bar-btn:hover[b-ya5aaiwjb5] {
    background: rgba(255,255,255,0.1);
}

.title-bar-btn.close:hover[b-ya5aaiwjb5] {
    background: #E81123;
}

/* Menu Bar */
.menu-bar[b-ya5aaiwjb5] {
    background: white;
    border-bottom: 2px solid #F3F4F6;
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 6px;
    overflow-x: auto;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.menu-item[b-ya5aaiwjb5] {
    padding: 10px 18px;
    cursor: pointer;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
    color: #374151;
    font-weight: 500;
}

.menu-item:hover[b-ya5aaiwjb5] {
    background: #F9FAFB;
    transform: translateY(-1px);
}

.menu-item.active[b-ya5aaiwjb5] {
    background: linear-gradient(135deg, #E0E7FF 0%, #DDD6FE 100%);
    color: #4F46E5;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(79, 70, 229, 0.15);
}

/* Status Bar */
.status-bar[b-ya5aaiwjb5] {
    background: white;
    border-top: 1px solid #E5E7EB;
    height: 22px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 10px;
    color: #6B7280;
    gap: 20px;
}

.status-item[b-ya5aaiwjb5] {
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-separator[b-ya5aaiwjb5] {
    width: 1px;
    height: 14px;
    background: #E5E7EB;
}

.user-badge[b-ya5aaiwjb5] {
    background: #DBEAFE;
    color: #1E40AF;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 10px;
}

/* Main Container */
.main-container[b-ya5aaiwjb5] {
    display: grid;
    grid-template-columns: 1fr 380px;
    height: calc(100vh - 98px);
    overflow: hidden;
}

/* Left Panel - Products */
.left-panel[b-ya5aaiwjb5] {
    padding: 16px;
    overflow-y: auto;
    height: 100%;
}

.search-bar[b-ya5aaiwjb5] {
    background: white;
    border-radius: 6px;
    padding: 2px 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    margin-bottom: 4px;
    display: flex;
    gap: 6px;
    align-items: center;
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease;
}

.search-bar:focus-within[b-ya5aaiwjb5] {
    border-color: #4F46E5;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.1);
}

.search-bar input[b-ya5aaiwjb5] {
    flex: 1;
    border: none;
    outline: none;
    font-size: 13px;
    line-height: 1.4;
    background: transparent;
    min-width: 0;
    padding: 3px 0;
}

.search-bar input[b-ya5aaiwjb5]::placeholder {
    color: #94a3b8;
}

.scan-btn[b-ya5aaiwjb5] {
    padding: 3px 10px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 4px rgba(16, 185, 129, 0.3);
}

.scan-btn:hover[b-ya5aaiwjb5] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.scan-btn:active[b-ya5aaiwjb5] {
    transform: translateY(0);
}

.category-filter[b-ya5aaiwjb5] {
    margin-bottom: 4px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 2px;
}

.category-filter[b-ya5aaiwjb5]::-webkit-scrollbar {
    height: 6px;
}

.category-filter[b-ya5aaiwjb5]::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 3px;
}

.category-btn[b-ya5aaiwjb5] {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    background: white;
    margin-right: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    line-height: 1.4;
    color: #374151;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.category-btn:hover[b-ya5aaiwjb5] {
    border-color: #4F46E5;
    color: #4F46E5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(79, 70, 229, 0.15);
}

.category-btn.active[b-ya5aaiwjb5] {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    color: white;
    border-color: #4F46E5;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.35);
}

.products-grid[b-ya5aaiwjb5] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
}
.product-card[b-ya5aaiwjb5] {
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    overflow: hidden;
    border: 1px solid #F3F4F6;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    aspect-ratio: 3 / 4; /* taller than wide — fits image + info */
}

.product-card:hover[b-ya5aaiwjb5] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #E5E7EB;
}

.product-image[b-ya5aaiwjb5] {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    font-weight: bold;
}

.product-info[b-ya5aaiwjb5] {
    padding: 6px 8px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    min-height: 0;
    overflow: hidden;
}

.product-name[b-ya5aaiwjb5] {
    font-weight: 600;
    font-size: clamp(0.6rem, 1.2vw, 0.85rem);
    color: #1a202c;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    word-break: break-word;
}



.product-price[b-ya5aaiwjb5] {
    font-size: clamp(0.6rem, 1.1vw, 0.8rem);
    font-weight: bold;
    color: #4F46E5;
}

.product-stock[b-ya5aaiwjb5] {
    font-size: clamp(0.55rem, 1vw, 0.72rem);
    color: #64748B;
    font-weight: 500;
}
/* Right Panel - Cart */
.right-panel[b-ya5aaiwjb5] {
    background: white;
    border-left: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.right-panel-content[b-ya5aaiwjb5] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

.cart-header[b-ya5aaiwjb5] {
    background: #F8FAFC;
    padding: 12px;
    border-bottom: 1px solid #E2E8F0;
    flex-shrink: 0;
}

.cart-title-row[b-ya5aaiwjb5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cart-title h2[b-ya5aaiwjb5] {
    font-size: 16px;
    font-weight: bold;
    color: #1a202c;
    margin: 0;
}

.invoice-number[b-ya5aaiwjb5] {
    font-size: 11px;
    color: #64748B;
    margin-top: 4px;
}

.btn-clear[b-ya5aaiwjb5] {
    padding: 5px 10px;
    background: #EF4444;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
}

.currency-section[b-ya5aaiwjb5] {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cart-count-badge[b-ya5aaiwjb5] {
    font-size: 11px;
    color: #64748B;
    font-weight: 500;
    white-space: nowrap;
}

.currency-buttons[b-ya5aaiwjb5] {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.currency-btn[b-ya5aaiwjb5] {
    background: #4F46E5;
    color: white;
    padding: 4px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.currency-btn:hover[b-ya5aaiwjb5] {
    background: #4338CA;
}

.currency-btn.active[b-ya5aaiwjb5] {
    background: #312E81;
}

.customer-section[b-ya5aaiwjb5] {
    padding: 8px 12px;
    border-bottom: 1px solid #E2E8F0;
    flex-shrink: 0;
}

.customer-search-wrapper[b-ya5aaiwjb5] {
    position: relative;
}

.customer-search-input[b-ya5aaiwjb5] {
    width: 100%;
    padding: 6px 28px 6px 8px;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-size: 11px;
    background: white;
    box-sizing: border-box;
}

.customer-search-input:focus[b-ya5aaiwjb5] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 2px rgba(79,70,229,0.1);
}

.customer-clear-btn[b-ya5aaiwjb5] {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 11px;
    padding: 2px 4px;
    line-height: 1;
}

.customer-clear-btn:hover[b-ya5aaiwjb5] {
    color: #EF4444;
}

.customer-dropdown[b-ya5aaiwjb5] {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 200;
    max-height: 220px;
    overflow-y: auto;
}

.customer-option[b-ya5aaiwjb5] {
    padding: 6px 10px;
    cursor: pointer;
    font-size: 11px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.1s;
}

.customer-option:last-child[b-ya5aaiwjb5] {
    border-bottom: none;
}

.customer-option:hover[b-ya5aaiwjb5] {
    background: #f8fafc;
}

.customer-option-walkin[b-ya5aaiwjb5] {
    color: #64748b;
    font-style: italic;
}

.customer-option-selected[b-ya5aaiwjb5] {
    background: #EEF2FF;
}

.customer-option-name[b-ya5aaiwjb5] {
    font-weight: 600;
    color: #1a202c;
}

.customer-option-meta[b-ya5aaiwjb5] {
    font-size: 10px;
    color: #64748b;
    margin-top: 1px;
    display: flex;
    gap: 8px;
}

/* Cart Items Container */
.cart-items-container[b-ya5aaiwjb5] {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
}

.cart-items[b-ya5aaiwjb5] {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 8px 12px;
}

.cart-item[b-ya5aaiwjb5] {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 5px;
    padding: 5px 6px;
    margin-bottom: 4px;
}

.cart-item-header[b-ya5aaiwjb5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.cart-item-name[b-ya5aaiwjb5] {
    font-weight: 600;
    font-size: 11px;
    color: #1a202c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 170px;
}

.cart-item-price[b-ya5aaiwjb5] {
    font-size: 10px;
    color: #64748B;
    white-space: nowrap;
    flex-shrink: 0;
}

.cart-item-total[b-ya5aaiwjb5] {
    font-size: 11px;
    font-weight: bold;
    color: #1a202c;
    white-space: nowrap;
}

.quantity-controls[b-ya5aaiwjb5] {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-top: 0;
}

.quantity-btn[b-ya5aaiwjb5] {
    width: 22px;
    height: 22px;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.quantity-btn:hover[b-ya5aaiwjb5] {
    background: #E2E8F0;
}

.quantity-input[b-ya5aaiwjb5] {
    width: 48px;
    height: 22px;
    text-align: center;
    border: 1px solid #E2E8F0;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
}

.empty-cart[b-ya5aaiwjb5] {
    text-align: center;
    padding: 30px 20px;
    color: #94a3b8;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.empty-cart-icon[b-ya5aaiwjb5] {
    font-size: 36px;
    margin-bottom: 12px;
}

/* Cart Bottom Bar — pinned below the scrollable cart items, never pushed out */
.cart-bottom-bar[b-ya5aaiwjb5] {
    flex-shrink: 0;
    overflow-y: auto;
    border-top: 1px solid #E2E8F0;
}

/* Cart Summary */
.order-summary-panel[b-ya5aaiwjb5] {
    display: block;
    width: 100%;
    flex-shrink: 0;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.order-summary-panel:not(.collapsed)[b-ya5aaiwjb5] {
    max-height: 500px;
    opacity: 1;
}

.order-summary-panel.collapsed[b-ya5aaiwjb5] {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    display: none !important;
}

.cart-summary[b-ya5aaiwjb5] {
    width: 100%;
    box-sizing: border-box;
    background: #F8FAFC;
    padding: 8px 12px;
    border-top: 1px solid #E2E8F0;
    flex-shrink: 0;
}

.summary-row[b-ya5aaiwjb5] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
    font-size: 11px;
}

.summary-row.total[b-ya5aaiwjb5] {
    font-size: 12px;
    font-weight: bold;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid #E2E8F0;
}

.summary-row.total .amount[b-ya5aaiwjb5] {
    color: #4F46E5;
    font-size: 14px;
}

/* Checkout Section */
.checkout-section[b-ya5aaiwjb5] {
    padding: 8px 12px;
    background: white;
    border-top: 1px solid #E2E8F0;
    flex-shrink: 0;
}

.payment-methods[b-ya5aaiwjb5] {
    margin-bottom: 12px;
}

.payment-methods label[b-ya5aaiwjb5] {
    font-size: 11px;
    color: #64748B;
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.payment-toggle-header[b-ya5aaiwjb5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
    padding: 4px 12px;
    font-size: 11px;
}

.payment-toggle-btn[b-ya5aaiwjb5] {
    background: none;
    border: none;
    color: #4F46E5;
    font-size: 14px;
    cursor: pointer;
    padding: 2px;
    transition: transform 0.3s;
}

.payment-toggle-btn.collapsed[b-ya5aaiwjb5] {
    transform: rotate(-90deg);
}

.payment-buttons[b-ya5aaiwjb5] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}

.payment-buttons:not(.collapsed)[b-ya5aaiwjb5] {
    max-height: 500px;
    opacity: 1;
}

.payment-buttons.collapsed[b-ya5aaiwjb5] {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
    display: none !important;
}

.payment-btn[b-ya5aaiwjb5] {
    padding: 8px 4px;
    background: #F8FAFC;
    border: 2px solid #E2E8F0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    transition: all 0.3s;
    text-align: center;
}

.payment-btn:hover[b-ya5aaiwjb5] {
    border-color: #4F46E5;
    background: #E0E7FF;
}

.payment-btn.active[b-ya5aaiwjb5] {
    background: #4F46E5;
    color: white;
    border-color: #4F46E5;
}

.split-payment-indicator[b-ya5aaiwjb5] {
    background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%);
    border: 2px solid #10B981;
    border-radius: 8px;
    padding: 12px;
    margin-top: 10px;
    animation: slideIn-b-ya5aaiwjb5 0.3s ease-out;
}

@keyframes slideIn-b-ya5aaiwjb5 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-checkout[b-ya5aaiwjb5] {
    width: 100%;
    padding: 12px;
    background: #4F46E5;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 6px;
}

.btn-checkout:hover:not(:disabled)[b-ya5aaiwjb5] {
    background: #4338CA;
}

.btn-checkout:disabled[b-ya5aaiwjb5] {
    background: #CBD5E1;
    cursor: not-allowed;
}

.payment-toggle-actions[b-ya5aaiwjb5] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-pay-method-picker[b-ya5aaiwjb5] {
    padding: 2px 7px;
    background: #EEF2FF;
    color: #4F46E5;
    border: 1px solid #C7D2FE;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s;
    line-height: 1;
    font-weight: 600;
}

.btn-pay-method-picker:hover[b-ya5aaiwjb5] {
    background: #4F46E5;
    color: white;
    border-color: #4F46E5;
}

/* Payment Method Picker Overlay */
.pm-overlay[b-ya5aaiwjb5] {
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 39, 0.55);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn-b-ya5aaiwjb5 0.15s ease-out;
    padding: 20px;
}

/* Payment Method Picker Modal */
.pm-picker-modal[b-ya5aaiwjb5] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    min-width: 280px;
    max-width: 340px;
    width: 100%;
    overflow: hidden;
    animation: slideUp-b-ya5aaiwjb5 0.2s ease-out;
}

.pm-picker-header[b-ya5aaiwjb5] {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pm-picker-icon[b-ya5aaiwjb5] {
    font-size: 18px;
}

.pm-picker-title[b-ya5aaiwjb5] {
    font-size: 14px;
    font-weight: 700;
    flex: 1;
}

.pm-picker-close[b-ya5aaiwjb5] {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.pm-picker-close:hover[b-ya5aaiwjb5] {
    background: rgba(255, 255, 255, 0.25);
}

.pm-picker-current[b-ya5aaiwjb5] {
    padding: 8px 16px;
    background: #F0FDF4;
    border-bottom: 1px solid #D1FAE5;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pm-current-label[b-ya5aaiwjb5] {
    color: #6B7280;
    font-weight: 500;
}

.pm-current-name[b-ya5aaiwjb5] {
    color: #059669;
    font-weight: 700;
}

.pm-picker-grid[b-ya5aaiwjb5] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 14px;
}

.pm-picker-btn[b-ya5aaiwjb5] {
    padding: 12px 8px;
    background: #F8FAFC;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    transition: all 0.15s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pm-picker-btn:hover[b-ya5aaiwjb5] {
    border-color: #4F46E5;
    background: #EEF2FF;
    color: #4F46E5;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.15);
}

.pm-picker-btn.active[b-ya5aaiwjb5] {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    color: white;
    border-color: #4F46E5;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}

.pm-btn-check[b-ya5aaiwjb5] {
    font-size: 14px;
    font-weight: 800;
    height: 16px;
    display: block;
}

.pm-btn-name[b-ya5aaiwjb5] {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
}

/* Fixed Footer */
.fixed-footer[b-ya5aaiwjb5] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1F2937;
    color: white;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 1001;
    border-top: 1px solid #374151;
}

.footer-left[b-ya5aaiwjb5] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-right[b-ya5aaiwjb5] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-item[b-ya5aaiwjb5] {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
}

.footer-separator[b-ya5aaiwjb5] {
    width: 1px;
    height: 12px;
    background: #374151;
}

/* Cart Toggle Button (Mobile) */
.cart-toggle[b-ya5aaiwjb5] {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #4F46E5;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
    z-index: 998;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.cart-toggle:hover[b-ya5aaiwjb5] {
    background: #4338CA;
    transform: scale(1.1);
}

.cart-badge[b-ya5aaiwjb5] {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #EF4444;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.mobile-cart-close[b-ya5aaiwjb5] {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #64748B;
    padding: 4px;
    margin-right: 8px;
}

.mobile-cart-close:hover[b-ya5aaiwjb5] {
    color: #374151;
}

.overlay[b-ya5aaiwjb5] {
    display: none;
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    bottom: 40px;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.overlay.active[b-ya5aaiwjb5] {
    display: block;
    opacity: 1;
}

/* Scrollbar Styling */
.cart-items[b-ya5aaiwjb5]::-webkit-scrollbar {
    width: 6px;
}

.cart-items[b-ya5aaiwjb5]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.cart-items[b-ya5aaiwjb5]::-webkit-scrollbar-thumb {
    background: #CBD5E1;
    border-radius: 3px;
}

.cart-items[b-ya5aaiwjb5]::-webkit-scrollbar-thumb:hover {
    background: #94A3B8;
}

/* Responsive Styles */

/* Tablet and Below */
@media (max-width: 1024px) {
    .main-container[b-ya5aaiwjb5] {
        grid-template-columns: 1fr;
    }
    
    .left-panel[b-ya5aaiwjb5] {
        padding: 16px;
        overflow-y: auto;
    }
    
    .right-panel[b-ya5aaiwjb5] {
        position: fixed;
        right: -100%;
        top: 68px;
        width: 100%;
        max-width: 400px;
        height: calc(100vh - 108px);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    }
    
    .right-panel.open[b-ya5aaiwjb5] {
        right: 0;
    }
    
    .cart-toggle[b-ya5aaiwjb5] {
        display: flex !important;
    }
    
    .mobile-cart-close[b-ya5aaiwjb5] {
        display: block !important;
    }
    
    .products-grid[b-ya5aaiwjb5] {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 10px;
    }
    
    .payment-buttons[b-ya5aaiwjb5] {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .title-bar-left .app-title[b-ya5aaiwjb5] {
        display: none;
    }
    
    .menu-item[b-ya5aaiwjb5] {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .left-panel[b-ya5aaiwjb5] {
        padding: 12px;
        overflow-y: auto;
        height: 100%;
    }
    
    .products-grid[b-ya5aaiwjb5] {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }
    
    .product-image[b-ya5aaiwjb5] {
        height: 80px;
        font-size: 28px;
    }
    
    .product-name[b-ya5aaiwjb5] {
        font-size: 12px;
    }
    
    .product-price[b-ya5aaiwjb5] {
        font-size: 13px;
    }
    
    .search-bar[b-ya5aaiwjb5] {
        padding: 10px 12px;
        flex-wrap: nowrap;
        margin-bottom: 12px;
    }
    
    /* Hide view-mode buttons on mobile to save space and keep scan button visible */
    .view-mode-buttons[b-ya5aaiwjb5] {
        display: none !important;
    }
    
    /* Ensure scan button stays prominent on mobile */
    .scan-btn[b-ya5aaiwjb5] {
        flex-shrink: 0;
        padding: 10px 14px;
    }
    
    .category-btn[b-ya5aaiwjb5] {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .category-filter[b-ya5aaiwjb5] {
        margin-bottom: 12px;
    }
    
    .fixed-footer[b-ya5aaiwjb5] {
        padding: 0 12px;
    }
    
    .footer-item span:last-child[b-ya5aaiwjb5] {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .search-bar[b-ya5aaiwjb5] {
        padding: 8px 10px;
    }
    
    .search-bar input[b-ya5aaiwjb5] {
        font-size: 13px;
        min-width: 0;
        flex: 1;
    }
    
    /* Keep scan button visible with icon only */
    .scan-btn[b-ya5aaiwjb5] {
        padding: 10px 12px;
        min-width: 44px;
    }
    
    .scan-btn span:not(:first-child)[b-ya5aaiwjb5] {
        display: none;
    }
    
    /* View-mode buttons already hidden at 768px */
    .view-mode-buttons[b-ya5aaiwjb5] {
        display: none !important;
    }
    
    .right-panel[b-ya5aaiwjb5] {
        max-width: 100%;
    }
    
    .products-grid[b-ya5aaiwjb5] {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .left-panel[b-ya5aaiwjb5] {
        padding: 12px;
    }
    
    .fixed-footer[b-ya5aaiwjb5] {
        height: 36px;
        font-size: 10px;
    }
    
    .payment-buttons[b-ya5aaiwjb5] {
        grid-template-columns: 1fr;
    }
    
    .cart-toggle[b-ya5aaiwjb5] {
        bottom: 50px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .cart-badge[b-ya5aaiwjb5] {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
}

/* Height-based responsive */
@media (max-height: 700px) {
    .right-panel-content[b-ya5aaiwjb5] {
        overflow-y: auto;
    }
    
    .cart-items-container[b-ya5aaiwjb5] {
        min-height: auto;
    }
    
    .checkout-section[b-ya5aaiwjb5] {
        position: sticky;
        bottom: 0;
        background: white;
        border-top: 2px solid #4F46E5;
        z-index: 10;
    }
}

/* Modal Overlay Styles */
.modal-overlay[b-ya5aaiwjb5] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn-b-ya5aaiwjb5 0.2s ease-out;
    padding: 20px;
}

@keyframes fadeIn-b-ya5aaiwjb5 {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp-b-ya5aaiwjb5 {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-dialog[b-ya5aaiwjb5] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    animation: slideUp-b-ya5aaiwjb5 0.3s ease-out;
}

.modal-dialog.modal-print[b-ya5aaiwjb5] {
    max-width: 640px;
}

/* Print modal: two-row header layout */
.modal-header.print-modal-header[b-ya5aaiwjb5] {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px 18px;
}

.print-modal-title-row[b-ya5aaiwjb5] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.print-modal-title-row h3[b-ya5aaiwjb5] {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.print-modal-action-row[b-ya5aaiwjb5] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.print-action-buttons[b-ya5aaiwjb5] {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.btn-print-email[b-ya5aaiwjb5] {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 7px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-print-email:hover[b-ya5aaiwjb5] {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-print-action[b-ya5aaiwjb5] {
    padding: 6px 16px;
    background: white;
    color: #4F46E5;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-print-action:hover[b-ya5aaiwjb5] {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.modal-content[b-ya5aaiwjb5] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modal-header[b-ya5aaiwjb5] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 2px solid #E5E7EB;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
    border-radius: 16px 16px 0 0;
}

.modal-header h3[b-ya5aaiwjb5] {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.modal-header .print-mode-toggle[b-ya5aaiwjb5] {
    display: flex;
    gap: 6px;
    margin-left: 0;
}

.mode-btn[b-ya5aaiwjb5] {
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
    font-weight: 500;
}

.mode-btn:hover[b-ya5aaiwjb5] {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
}

.mode-btn.active[b-ya5aaiwjb5] {
    background: white;
    color: #4F46E5;
    border-color: white;
}

.modal-header .btn[b-ya5aaiwjb5] {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: 8px;
}

.modal-header .btn-primary[b-ya5aaiwjb5] {
    background: white;
    color: #4F46E5;
}

.modal-header .btn-primary:hover[b-ya5aaiwjb5] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.modal-header .btn-close[b-ya5aaiwjb5] {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 28px;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 1;
    border: none;
    line-height: 1;
}

.modal-header .btn-close:hover[b-ya5aaiwjb5] {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body[b-ya5aaiwjb5] {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.modal-body iframe[b-ya5aaiwjb5] {
    width: 100%;
    height: 70vh;
    border: none;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-dialog[b-ya5aaiwjb5] {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        max-height: 100vh;
    }

    .modal-header[b-ya5aaiwjb5] {
        border-radius: 0;
        flex-wrap: wrap;
    }

    .modal-header h3[b-ya5aaiwjb5] {
        font-size: 16px;
    }

    .print-mode-toggle[b-ya5aaiwjb5] {
        width: 100%;
        margin: 8px 0 0 0 !important;
    }

    .mode-btn[b-ya5aaiwjb5] {
        flex: 1;
    }
}
/* /Pages/Products.razor.rz.scp.css */
/* Products Page Styles - Matching PHP Version */

.page-header[b-d19dsrw203] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
    padding: 24px;
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
    position: relative;
    overflow: hidden;
}

.page-header[b-d19dsrw203]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 70%);
    pointer-events: none;
}

.page-header h1[b-d19dsrw203] {
    font-size: 32px;
    color: white;
    margin: 0 0 6px 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.page-header p[b-d19dsrw203] {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 15px;
    position: relative;
    z-index: 1;
}

.page-actions[b-d19dsrw203] {
    display: flex;
    gap: 12px;
}

/* Statistics Cards */
.stats-grid[b-d19dsrw203] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card[b-d19dsrw203] {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #4F46E5;
    position: relative;
    min-height: 70px;
    transition: all 0.2s ease;
    border: 1px solid #F3F4F6;
}

.stat-card:hover[b-d19dsrw203] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.stat-value[b-d19dsrw203] {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.stat-label[b-d19dsrw203] {
    font-size: 12px;
    color: #6B7280;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stat-icon[b-d19dsrw203] {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 20px;
    opacity: 0.7;
}

/* Card */
.card[b-d19dsrw203] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #F3F4F6;
}

.card-header[b-d19dsrw203] {
    padding: 20px;
    border-bottom: 2px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: #F9FAFB;
}

.search-box[b-d19dsrw203] {
    flex: 1;
    min-width: 250px;
}

.search-box input[b-d19dsrw203] {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: white;
}

.search-box input:hover[b-d19dsrw203] {
    border-color: #D1D5DB;
}

.search-box input:focus[b-d19dsrw203] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.filter-group[b-d19dsrw203] {
    display: flex;
    gap: 8px;
}

.filter-group select[b-d19dsrw203] {
    padding: 10px 14px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 14px;
    background: white;
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-group select:hover[b-d19dsrw203] {
    border-color: #D1D5DB;
}

.filter-group select:focus[b-d19dsrw203] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Category Buttons */
.category-buttons[b-d19dsrw203] {
    display: flex;
    gap: 10px;
    margin: 16px;
    flex-wrap: wrap;
}

.category-btn[b-d19dsrw203] {
    padding: 10px 18px;
    border: 2px solid #E5E7EB;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
    color: #374151;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.category-btn:hover[b-d19dsrw203] {
    background: #F9FAFB;
    border-color: #4F46E5;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(79, 70, 229, 0.15);
}

.category-btn.active[b-d19dsrw203] {
    background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%);
    color: white;
    border-color: #4F46E5;
    box-shadow: 0 4px 8px rgba(79, 70, 229, 0.3);
}

/* Stats Summary */
.stats-summary[b-d19dsrw203] {
    display: flex;
    gap: 12px;
    margin: 0 16px 16px 16px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #6B7280;
}

.stat-item[b-d19dsrw203] {
    background: #F8FAFC;
    padding: 8px 16px;
    border-radius: 6px;
    border-left: 3px solid #4F46E5;
}

.stat-item.low-stock[b-d19dsrw203] {
    border-left-color: #EF4444;
}

.stat-item.out-of-stock[b-d19dsrw203] {
    border-left-color: #F59E0B;
}

/* Table Container */
.table-container[b-d19dsrw203] {
    max-height: 500px;
    overflow-y: auto;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    margin: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.data-table[b-d19dsrw203] {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.data-table thead[b-d19dsrw203] {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #F9FAFB;
}

.data-table thead th[b-d19dsrw203] {
    background: #F9FAFB;
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 12px;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #E5E7EB;
    position: sticky;
    top: 0;
}

.data-table tbody tr[b-d19dsrw203] {
    border-bottom: 1px solid #E5E7EB;
}

.data-table tbody tr:hover[b-d19dsrw203] {
    background: #F9FAFB;
}

.data-table tbody td[b-d19dsrw203] {
    padding: 12px 16px;
    font-size: 14px;
    color: #374151;
}

.data-table td code[b-d19dsrw203] {
    font-size: 11px;
    background: #F3F4F6;
    padding: 2px 6px;
    border-radius: 4px;
    color: #6B7280;
}

.data-table td small[b-d19dsrw203] {
    font-size: 11px;
    color: #6B7280;
}

/* Badges */
.badge[b-d19dsrw203] {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
    color: white;
    font-weight: 500;
}

.stock-badge[b-d19dsrw203] {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.stock-badge.critical[b-d19dsrw203] {
    background: #FEE2E2;
    color: #991B1B;
}

.stock-badge.warning[b-d19dsrw203] {
    background: #FEF3C7;
    color: #92400E;
}

.stock-badge.good[b-d19dsrw203] {
    background: #D1FAE5;
    color: #065F46;
}

.status-badge[b-d19dsrw203] {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.status-badge.active[b-d19dsrw203] {
    background: #D1FAE5;
    color: #065F46;
}

.status-badge.inactive[b-d19dsrw203] {
    background: #F3F4F6;
    color: #6B7280;
}

/* Actions */
.actions[b-d19dsrw203] {
    white-space: nowrap;
}

.btn-icon[b-d19dsrw203] {
    background: none;
    border: none;
    padding: 4px 8px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

.btn-icon:hover[b-d19dsrw203] {
    background: #F3F4F6;
}

/* Buttons */
.btn[b-d19dsrw203] {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary[b-d19dsrw203] {
    background: #4F46E5;
    color: white;
}

.btn-primary:hover[b-d19dsrw203] {
    background: #4338CA;
}

.btn-secondary[b-d19dsrw203] {
    background: #F3F4F6;
    color: #374151;
}

.btn-secondary:hover[b-d19dsrw203] {
    background: #E5E7EB;
}

/* Modal */
.modal-overlay[b-d19dsrw203] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content[b-d19dsrw203] {
    background: white;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.modal-header[b-d19dsrw203] {
    padding: 20px;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: spacbetween;
    align-items: center;
}

.modal-header h2[b-d19dsrw203] {
    font-size: 20px;
    color: #111827;
    margin: 0;
}

.modal-close[b-d19dsrw203] {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6B7280;
    margin-left: auto;
}

.modal-body[b-d19dsrw203] {
    padding: 20px;
}

.modal-footer[b-d19dsrw203] {
    padding: 20px;
    border-top: 1px solid #E5E7EB;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Form */
.form-row[b-d19dsrw203] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group[b-d19dsrw203] {
    margin-bottom: 16px;
}

.form-group label[b-d19dsrw203] {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.form-control[b-d19dsrw203] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-size: 14px;
}

.form-control:focus[b-d19dsrw203] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Alerts */
.alert[b-d19dsrw203] {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-size: 14px;
}

.alert-info[b-d19dsrw203] {
    background: #DBEAFE;
    color: #1E40AF;
    border-left: 4px solid #3B82F6;
}

.alert-warning[b-d19dsrw203] {
    background: #FEF3C7;
    color: #92400E;
    border-left: 4px solid #F59E0B;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header[b-d19dsrw203] {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page-actions[b-d19dsrw203] {
        width: 100%;
        flex-wrap: wrap;
    }
    
    .stats-grid[b-d19dsrw203] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-header[b-d19dsrw203] {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box[b-d19dsrw203] {
        width: 100%;
    }
    
    .filter-group[b-d19dsrw203] {
        width: 100%;
    }
    
    .filter-group select[b-d19dsrw203] {
        flex: 1;
    }
    
    .form-row[b-d19dsrw203] {
        grid-template-columns: 1fr;
    }
    
    .table-container[b-d19dsrw203] {
        overflow-x: auto;
    }
    
    .data-table[b-d19dsrw203] {
        min-width: 800px;
    }
}

@media (max-width: 480px) {
    .stats-grid[b-d19dsrw203] {
        grid-template-columns: 1fr;
    }
    
    .page-actions button[b-d19dsrw203] {
        flex: 1;
    }
}
/* /Pages/Sales.razor.rz.scp.css */
/* Statistics Cards */
.stats-grid[b-2dbdgokbqy] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card[b-2dbdgokbqy] {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #4F46E5;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover[b-2dbdgokbqy] {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.stat-card:nth-child(2)[b-2dbdgokbqy] {
    border-left-color: #10B981;
}

.stat-card:nth-child(3)[b-2dbdgokbqy] {
    border-left-color: #F59E0B;
}

.stat-card:nth-child(4)[b-2dbdgokbqy] {
    border-left-color: #8B5CF6;
}

.stat-value[b-2dbdgokbqy] {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.stat-label[b-2dbdgokbqy] {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

.stat-icon[b-2dbdgokbqy] {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 20px;
    opacity: 0.3;
}

/* Sale Details Modal */
.sale-details[b-2dbdgokbqy] {
    padding: 8px 0;
}

.detail-row[b-2dbdgokbqy] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 16px;
}

.detail-group label[b-2dbdgokbqy] {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.detail-value[b-2dbdgokbqy] {
    font-size: 14px;
    color: #111827;
    font-weight: 500;
}

.items-table[b-2dbdgokbqy] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
}

.items-table thead[b-2dbdgokbqy] {
    background: #F9FAFB;
}

.items-table th[b-2dbdgokbqy] {
    padding: 10px 12px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    border-bottom: 2px solid #E5E7EB;
}

.items-table td[b-2dbdgokbqy] {
    padding: 10px 12px;
    font-size: 13px;
    border-bottom: 1px solid #F3F4F6;
}

.items-table tbody tr:last-child td[b-2dbdgokbqy] {
    border-bottom: none;
}

.sale-summary[b-2dbdgokbqy] {
    margin-top: 24px;
    padding: 16px;
    background: #F9FAFB;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.summary-row[b-2dbdgokbqy] {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.summary-row.total[b-2dbdgokbqy] {
    border-top: 2px solid #E5E7EB;
    margin-top: 8px;
    padding-top: 12px;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.text-center[b-2dbdgokbqy] {
    text-align: center;
}

.text-end[b-2dbdgokbqy] {
    text-align: right;
}

/* Date inputs styling */
.filter-group input[type="date"][b-2dbdgokbqy] {
    padding: 10px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.filter-group input[type="date"]:focus[b-2dbdgokbqy] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Page Layout */
/* Sales - removed centering */

.page-header[b-2dbdgokbqy] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.page-header h1[b-2dbdgokbqy] {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.page-header p[b-2dbdgokbqy] {
    margin: 4px 0 0 0;
    color: #6B7280;
}

.page-actions[b-2dbdgokbqy] {
    display: flex;
    gap: 12px;
}

/* Card Styles */
.card[b-2dbdgokbqy] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header[b-2dbdgokbqy] {
    padding: 16px 20px;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Search and Filters */
.search-box[b-2dbdgokbqy] {
    flex: 1;
    min-width: 250px;
}

.search-box input[b-2dbdgokbqy] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
}

.search-box input:focus[b-2dbdgokbqy] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.filter-group[b-2dbdgokbqy] {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group select[b-2dbdgokbqy] {
    padding: 10px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
}

.filter-group select:focus[b-2dbdgokbqy] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Table Styles */
.table-responsive[b-2dbdgokbqy] {
    overflow-x: scroll;
}

.table[b-2dbdgokbqy] {
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
}

.table thead tr[b-2dbdgokbqy] {
    background: #F9FAFB;
    border-bottom: 2px solid #E5E7EB;
}

.table th[b-2dbdgokbqy] {
    padding: 5px 8px;
    text-align: left;
    font-size: 10px;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    user-select: none;
}

.table th:hover[b-2dbdgokbqy] {
    background: #F3F4F6;
}

.table td[b-2dbdgokbqy] {
    padding: 5px 8px;
    font-size: 10px;
    border-bottom: 1px solid #F3F4F6;
}

.table tbody tr:hover[b-2dbdgokbqy] {
    background: #F9FAFB;
}

.table tbody tr:last-child td[b-2dbdgokbqy] {
    border-bottom: none;
}

.actions-column[b-2dbdgokbqy] {
    width: 120px;
    text-align: right;
}

/* Badges */
.badge[b-2dbdgokbqy] {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.bg-success[b-2dbdgokbqy] {
    background: #D1FAE5;
    color: #065F46;
}

.badge.bg-warning[b-2dbdgokbqy] {
    background: #FEF3C7;
    color: #92400E;
}

.badge.bg-danger[b-2dbdgokbqy] {
    background: #FEE2E2;
    color: #991B1B;
}

.badge.bg-secondary[b-2dbdgokbqy] {
    background: #F3F4F6;
    color: #4B5563;
}

/* Buttons */
.btn[b-2dbdgokbqy] {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn:hover[b-2dbdgokbqy] {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:active[b-2dbdgokbqy] {
    transform: translateY(0);
}

.btn-primary[b-2dbdgokbqy] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-secondary[b-2dbdgokbqy] {
    background: #F3F4F6;
    color: #4B5563;
}

.btn-danger[b-2dbdgokbqy] {
    background: #DC2626;
    color: white;
}

.btn-sm[b-2dbdgokbqy] {
    padding: 6px 12px;
    font-size: 12px;
}

/* Modal Overlay */
.modal-overlay[b-2dbdgokbqy] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: fadeIn-b-2dbdgokbqy 0.2s ease-out;
}

@keyframes fadeIn-b-2dbdgokbqy {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-dialog[b-2dbdgokbqy] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    animation: slideUp-b-2dbdgokbqy 0.3s ease-out;
}

@keyframes slideUp-b-2dbdgokbqy {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-dialog.modal-lg[b-2dbdgokbqy] {
    max-width: 900px;
}

.modal-dialog.modal-print[b-2dbdgokbqy] {
    max-width: 800px;
    width: 90vw;
    height: 90vh;
}

.modal-content[b-2dbdgokbqy] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modal-header[b-2dbdgokbqy] {
    padding: 14px 18px;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F9FAFB;
    flex-shrink: 0;
}

.modal-header h2[b-2dbdgokbqy],
.modal-header h3[b-2dbdgokbqy] {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #111827;
}

/* Print modal: two-row header */
.modal-header.print-modal-header[b-2dbdgokbqy] {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 14px;
}

.print-modal-title-row[b-2dbdgokbqy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.print-modal-title-row h3[b-2dbdgokbqy] {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.print-modal-action-row[b-2dbdgokbqy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.print-modal-action-row .print-mode-toggle[b-2dbdgokbqy] {
    margin-left: 0;
}

.print-action-buttons[b-2dbdgokbqy] {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.btn-print-email[b-2dbdgokbqy] {
    padding: 4px 12px;
    background: white;
    color: #374151;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-print-email:hover[b-2dbdgokbqy] {
    background: #F3F4F6;
    border-color: #9CA3AF;
}

.btn-print-action[b-2dbdgokbqy] {
    padding: 4px 14px;
    background: #4F46E5;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-print-action:hover[b-2dbdgokbqy] {
    background: #4338CA;
}

.modal-header .print-mode-toggle[b-2dbdgokbqy] {
    display: flex;
    gap: 6px;
    margin-left: 0;
}

.mode-btn[b-2dbdgokbqy] {
    padding: 4px 12px;
    border: 1px solid rgba(79, 70, 229, 0.3);
    background: white;
    color: #4F46E5;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
    font-weight: 500;
}

.mode-btn:hover[b-2dbdgokbqy] {
    background: #F3F4F6;
    border-color: #4F46E5;
}

.mode-btn.active[b-2dbdgokbqy] {
    background: #4F46E5;
    color: white;
    border-color: #4F46E5;
}

.modal-body[b-2dbdgokbqy] {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.modal-dialog.modal-print .modal-body[b-2dbdgokbqy] {
    padding: 0;
}

.modal-dialog.modal-print .modal-body iframe[b-2dbdgokbqy] {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.modal-footer[b-2dbdgokbqy] {
    padding: 16px 24px;
    border-top: 1px solid #E5E7EB;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    background: #F9FAFB;
}

.close-button[b-2dbdgokbqy],
.btn-close[b-2dbdgokbqy] {
    background: #F3F4F6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    font-size: 24px;
    color: #6B7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.close-button:hover[b-2dbdgokbqy],
.btn-close:hover[b-2dbdgokbqy] {
    background: #E5E7EB;
    color: #111827;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid[b-2dbdgokbqy] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-dialog[b-2dbdgokbqy] {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 12px 12px 0 0;
        margin: 0;
    }
    
    .modal-overlay[b-2dbdgokbqy] {
        padding: 0;
        align-items: flex-end;
    }

    .page-header[b-2dbdgokbqy] {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-actions[b-2dbdgokbqy] {
        width: 100%;
        flex-wrap: wrap;
    }

    .page-actions .btn[b-2dbdgokbqy] {
        flex: 1;
        justify-content: center;
    }

    .card-header[b-2dbdgokbqy] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box[b-2dbdgokbqy] {
        width: 100%;
    }

    .filter-group[b-2dbdgokbqy] {
        flex-wrap: wrap;
        gap: 8px;
    }

    .filter-group select[b-2dbdgokbqy],
    .filter-group input[type="date"][b-2dbdgokbqy] {
        flex: 1 1 140px;
        width: auto;
    }

    .table-container[b-2dbdgokbqy] {
        overflow-x: auto;
    }

    .items-table[b-2dbdgokbqy] {
        min-width: 500px;
    }
}

@media (max-width: 480px) {
    .stats-grid[b-2dbdgokbqy] {
        grid-template-columns: 1fr;
    }

    .page-header h1[b-2dbdgokbqy] {
        font-size: 20px;
    }

    .stat-value[b-2dbdgokbqy] {
        font-size: 24px;
    }
}
/* /Pages/Settings.razor.rz.scp.css */
/* Settings - removed centering */

/* Header Section */
.header-section[b-9pgc96sdkm] {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px -5px rgba(79, 70, 229, 0.3);
    position: relative;
    overflow: hidden;
}

.header-section[b-9pgc96sdkm]::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.header-section h1[b-9pgc96sdkm] {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.header-section h1 i[b-9pgc96sdkm] {
    font-size: 2.2rem;
}

.header-section p[b-9pgc96sdkm] {
    font-size: 1.15rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

/* Settings Layout */
.settings-layout[b-9pgc96sdkm] {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
}

.settings-sidebar[b-9pgc96sdkm] {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    height: fit-content;
    position: sticky;
    top: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.settings-content[b-9pgc96sdkm] {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    min-height: 600px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Navigation */
.settings-nav[b-9pgc96sdkm] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.settings-nav-item[b-9pgc96sdkm] {
    padding: 14px 18px;
    cursor: pointer;
    border-radius: 10px;
    margin-bottom: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-medium);
    position: relative;
}

.settings-nav-item:hover[b-9pgc96sdkm] {
    background: #F3F4F6;
    color: var(--primary);
    transform: translateX(4px);
}

.settings-nav-item.active[b-9pgc96sdkm] {
    background: linear-gradient(135deg, var(--primary) 0%, #6366F1 100%);
    color: white;
    box-shadow: 0 4px 12px -2px rgba(79, 70, 229, 0.35);
}

.settings-nav-item.active[b-9pgc96sdkm]::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0 4px 4px 0;
}

.settings-nav-item i[b-9pgc96sdkm] {
    width: 22px;
    text-align: center;
    font-size: 1.25rem;
}

/* Section Header */
.section-header[b-9pgc96sdkm] {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 3px solid #E5E7EB;
    position: relative;
}

.section-header[b-9pgc96sdkm]::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #6366F1);
    border-radius: 3px;
}

.section-header h2[b-9pgc96sdkm] {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
}

.section-header h2 i[b-9pgc96sdkm] {
    color: var(--primary);
}

.section-header p[b-9pgc96sdkm] {
    color: var(--text-light);
    margin: 8px 0 0 0;
    font-size: 1.05rem;
}

/* Forms */
.form-grid[b-9pgc96sdkm] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.form-group[b-9pgc96sdkm] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label[b-9pgc96sdkm] {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.form-group input[b-9pgc96sdkm],
.form-group select[b-9pgc96sdkm],
.form-group textarea[b-9pgc96sdkm] {
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    width: 100%;
}

.form-group input:focus[b-9pgc96sdkm],
.form-group select:focus[b-9pgc96sdkm],
.form-group textarea:focus[b-9pgc96sdkm] {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea[b-9pgc96sdkm] {
    resize: vertical;
    min-height: 100px;
}

.form-row[b-9pgc96sdkm] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.form-control[b-9pgc96sdkm] {
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
    width: 100%;
    background: white;
}

.form-control:hover[b-9pgc96sdkm] {
    border-color: #D1D5DB;
}

.form-control:focus[b-9pgc96sdkm] {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Buttons */
.btn[b-9pgc96sdkm] {
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: inherit;
    font-size: 0.95rem;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary[b-9pgc96sdkm] {
    background: linear-gradient(135deg, var(--primary) 0%, #6366F1 100%);
    color: white;
}

.btn-primary:hover[b-9pgc96sdkm] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(79, 70, 229, 0.4);
}

.btn-primary:active[b-9pgc96sdkm] {
    transform: translateY(0);
}

.btn-success[b-9pgc96sdkm] {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    color: white;
}

.btn-success:hover[b-9pgc96sdkm] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(16, 185, 129, 0.4);
}

.btn-danger[b-9pgc96sdkm] {
    background: linear-gradient(135deg, var(--danger) 0%, #DC2626 100%);
    color: white;
}

.btn-danger:hover[b-9pgc96sdkm] {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px -4px rgba(239, 68, 68, 0.4);
}

.btn-outline[b-9pgc96sdkm] {
    background: white;
    border: 2px solid #E5E7EB;
    color: var(--text-medium);
}

.btn-outline:hover[b-9pgc96sdkm] {
    border-color: var(--primary);
    color: var(--primary);
    background: #F9FAFB;
}

.btn-sm[b-9pgc96sdkm] {
    padding: 8px 14px;
    font-size: 0.85rem;
}

.action-buttons[b-9pgc96sdkm] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Tables - Desktop */
.table-container[b-9pgc96sdkm] {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border: 1px solid #E5E7EB;
}

.data-table[b-9pgc96sdkm] {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
}

.data-table th[b-9pgc96sdkm],
.data-table td[b-9pgc96sdkm] {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #F3F4F6;
}

.data-table th[b-9pgc96sdkm] {
    background: #F9FAFB;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tr:hover[b-9pgc96sdkm] {
    background: #F9FAFB;
}

.data-table tr:last-child td[b-9pgc96sdkm] {
    border-bottom: none;
}

/* Cards - Mobile */
.cards-container[b-9pgc96sdkm] {
    display: none;
    gap: 15px;
    flex-direction: column;
}

.data-card[b-9pgc96sdkm] {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E7EB;
    transition: all 0.2s ease;
}

.data-card:hover[b-9pgc96sdkm] {
    box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #D1D5DB;
}

.card-row[b-9pgc96sdkm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #F3F4F6;
}

.card-row:last-child[b-9pgc96sdkm] {
    border-bottom: none;
    padding-bottom: 0;
}

.card-label[b-9pgc96sdkm] {
    font-weight: 600;
    color: var(--text-medium);
    font-size: 0.85rem;
    min-width: 110px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.card-value[b-9pgc96sdkm] {
    color: var(--text-dark);
    text-align: right;
    flex: 1;
    font-size: 0.95rem;
}

.card-actions[b-9pgc96sdkm] {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #F3F4F6;
}

/* Status Badges */
.status-badge[b-9pgc96sdkm] {
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.status-active[b-9pgc96sdkm] {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.status-inactive[b-9pgc96sdkm] {
    background: rgba(107, 114, 128, 0.1);
    color: var(--text-light);
}

/* Color Badge */
.color-badge[b-9pgc96sdkm] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid var(--border);
}

/* Toggle Switch */
.toggle-container[b-9pgc96sdkm] {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.toggle-switch[b-9pgc96sdkm] {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.toggle-switch input[b-9pgc96sdkm] {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-slider[b-9pgc96sdkm] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E5E7EB;
    transition: all 0.3s ease;
    border-radius: 34px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.toggle-slider[b-9pgc96sdkm]:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider[b-9pgc96sdkm] {
    background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.toggle-switch input:checked + .toggle-slider[b-9pgc96sdkm]:before {
    transform: translateX(24px);
}

.toggle-slider:hover[b-9pgc96sdkm] {
    background-color: #D1D5DB;
}

.toggle-switch input:checked + .toggle-slider:hover[b-9pgc96sdkm] {
    background: linear-gradient(135deg, #0D9488 0%, #059669 100%);
}

/* Color Picker */
.color-picker[b-9pgc96sdkm] {
    width: 100%;
    height: 40px;
    border: 2px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
}

/* Search and Filters */
.search-box[b-9pgc96sdkm] {
    padding: 12px 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    width: 300px;
    max-width: 100%;
}

.toolbar[b-9pgc96sdkm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
    flex-wrap: wrap;
}

.toolbar-left[b-9pgc96sdkm] {
    display: flex;
    gap: 15px;
    align-items: center;
    flex: 1;
}

.toolbar-right[b-9pgc96sdkm] {
    display: flex;
    gap: 10px;
}

/* Modals */
.modal[b-9pgc96sdkm] {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content[b-9pgc96sdkm] {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.modal-header[b-9pgc96sdkm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title[b-9pgc96sdkm] {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.close-modal[b-9pgc96sdkm] {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
}

.close-modal:hover[b-9pgc96sdkm] {
    color: var(--text-dark);
}

/* Alerts */
.alert[b-9pgc96sdkm] {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-danger[b-9pgc96sdkm] {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-success[b-9pgc96sdkm] {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle[b-9pgc96sdkm] {
    display: none;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 15px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 15px;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .settings-layout[b-9pgc96sdkm] {
        grid-template-columns: 1fr;
    }
    
    .settings-sidebar[b-9pgc96sdkm] {
        position: static;
    }
}

@media (max-width: 768px) {
    .header-section[b-9pgc96sdkm] {
        padding: 20px;
    }

    .header-section h1[b-9pgc96sdkm] {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .settings-content[b-9pgc96sdkm] {
        padding: 20px 15px;
    }

    .form-grid[b-9pgc96sdkm] {
        grid-template-columns: 1fr;
    }

    .form-row[b-9pgc96sdkm] {
        grid-template-columns: 1fr;
    }

    .toolbar[b-9pgc96sdkm] {
        flex-direction: column;
        align-items: stretch;
    }

    .toolbar-left[b-9pgc96sdkm] {
        flex-direction: column;
        width: 100%;
    }

    .search-box[b-9pgc96sdkm] {
        width: 100%;
    }

    /* Switch to cards on mobile */
    .data-table[b-9pgc96sdkm] {
        display: none !important;
    }

    .cards-container[b-9pgc96sdkm] {
        display: flex;
    }

    .action-buttons[b-9pgc96sdkm] {
        flex-direction: column;
    }

    .btn[b-9pgc96sdkm] {
        width: 100%;
        justify-content: center;
    }

    /* Mobile Menu */
    .mobile-menu-toggle[b-9pgc96sdkm] {
        display: flex;
    }

    .settings-sidebar[b-9pgc96sdkm] {
        display: none;
    }

    .settings-sidebar.active[b-9pgc96sdkm] {
        display: block;
        position: fixed;
        top: 80px;
        left: 10px;
        right: 10px;
        z-index: 999;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }
}

@media (min-width: 769px) {
    .data-table[b-9pgc96sdkm] {
        display: table;
    }

    .cards-container[b-9pgc96sdkm] {
        display: none;
    }
}

@media (max-width: 480px) {
    .header-section[b-9pgc96sdkm] {
        padding: 15px;
    }

    .header-section h1[b-9pgc96sdkm] {
        font-size: 1.5rem;
    }

    .section-header h2[b-9pgc96sdkm] {
        font-size: 1.4rem;
    }

    .modal-content[b-9pgc96sdkm] {
        padding: 20px;
        margin: 10px;
    }

    .modal-title[b-9pgc96sdkm] {
        font-size: 1.3rem;
    }

    .card-row[b-9pgc96sdkm] {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .card-value[b-9pgc96sdkm] {
        text-align: left;
        width: 100%;
    }

    .card-actions[b-9pgc96sdkm] {
        flex-direction: column;
    }

    .toolbar-right[b-9pgc96sdkm] {
        width: 100%;
    }

    .toolbar-right .btn[b-9pgc96sdkm] {
        width: 100%;
    }
}

/* Audit Badges */
.audit-badge[b-9pgc96sdkm] {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}

.audit-badge-success[b-9pgc96sdkm] {
    background: #dcfce7;
    color: #16a34a;
}

.audit-badge-warning[b-9pgc96sdkm] {
    background: #fef3c7;
    color: #d97706;
}

.audit-badge-info[b-9pgc96sdkm] {
    background: #dbeafe;
    color: #2563eb;
}

.audit-badge-primary[b-9pgc96sdkm] {
    background: #e0e7ff;
    color: #4f46e5;
}

.audit-badge-secondary[b-9pgc96sdkm] {
    background: #f1f5f9;
    color: #64748b;
}

/* Custom Scrollbar */
[b-9pgc96sdkm]::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

[b-9pgc96sdkm]::-webkit-scrollbar-track {
    background: var(--bg-light);
}

[b-9pgc96sdkm]::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

[b-9pgc96sdkm]::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

/* Pagination Controls */
.pagination-controls[b-9pgc96sdkm] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    padding: 15px;
    background: #F9FAFB;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
}

.pagination-info[b-9pgc96sdkm] {
    font-weight: 600;
    color: var(--text-medium);
    font-size: 0.95rem;
    padding: 0 10px;
}
/* /Pages/StockTakeCount.razor.rz.scp.css */
.page-header[b-el8mrpxgjv] {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #E5E7EB;
}

.page-header h1[b-el8mrpxgjv] {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px 0;
}

.page-header p[b-el8mrpxgjv] {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

.button-group[b-el8mrpxgjv] {
    display: flex;
    gap: 12px;
}

.btn-primary[b-el8mrpxgjv] {
    background: #4F46E5;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover[b-el8mrpxgjv] {
    background: #4338CA;
}

.btn-secondary[b-el8mrpxgjv] {
    background: white;
    color: #4F46E5;
    padding: 10px 20px;
    border: 2px solid #4F46E5;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover[b-el8mrpxgjv] {
    background: #F3F4F6;
}

.stats-grid[b-el8mrpxgjv] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card[b-el8mrpxgjv] {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #4F46E5;
    position: relative;
    transition: all 0.2s ease;
    border: 1px solid #F3F4F6;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-card:hover[b-el8mrpxgjv] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.stat-icon[b-el8mrpxgjv] {
    font-size: 40px;
    margin-bottom: 12px;
}

.stat-value[b-el8mrpxgjv] {
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    margin: 8px 0;
}

.stat-label[b-el8mrpxgjv] {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card[b-el8mrpxgjv] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 24px;
    margin-bottom: 24px;
}

.card-header[b-el8mrpxgjv] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E7EB;
}

.card-header h2[b-el8mrpxgjv] {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin: 0;
}

.search-box[b-el8mrpxgjv] {
    position: relative;
    width: 300px;
}

.search-box input[b-el8mrpxgjv] {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.search-box input:focus[b-el8mrpxgjv] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.search-icon[b-el8mrpxgjv] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    font-size: 18px;
}

.items-table[b-el8mrpxgjv] {
    width: 100%;
    border-collapse: collapse;
}

.items-table thead[b-el8mrpxgjv] {
    background: #F9FAFB;
    border-bottom: 2px solid #E5E7EB;
}

.items-table th[b-el8mrpxgjv] {
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.items-table td[b-el8mrpxgjv] {
    padding: 14px 16px;
    border-bottom: 1px solid #F3F4F6;
    font-size: 14px;
}

.items-table tr:hover[b-el8mrpxgjv] {
    background: #F9FAFB;
}

.product-info[b-el8mrpxgjv] {
    display: flex;
    flex-direction: column;
}

.product-name[b-el8mrpxgjv] {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
}

.product-sku[b-el8mrpxgjv] {
    font-size: 12px;
    color: #9CA3AF;
}

.quantity-input[b-el8mrpxgjv] {
    width: 100px;
    padding: 8px 12px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
}

.quantity-input:focus[b-el8mrpxgjv] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.variance-positive[b-el8mrpxgjv] {
    color: #10B981;
    font-weight: 600;
}

.variance-negative[b-el8mrpxgjv] {
    color: #EF4444;
    font-weight: 600;
}

.variance-none[b-el8mrpxgjv] {
    color: #9CA3AF;
    font-weight: 400;
}

.badge[b-el8mrpxgjv] {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-success[b-el8mrpxgjv] {
    background: #D1FAE5;
    color: #065F46;
}

.badge-warning[b-el8mrpxgjv] {
    background: #FEF3C7;
    color: #92400E;
}

.badge-danger[b-el8mrpxgjv] {
    background: #FEE2E2;
    color: #991B1B;
}

.action-buttons[b-el8mrpxgjv] {
    display: flex;
    gap: 8px;
}

.btn-sm[b-el8mrpxgjv] {
    padding: 6px 12px;
    font-size: 13px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-adjust[b-el8mrpxgjv] {
    background: #10B981;
    color: white;
}

.btn-adjust:hover[b-el8mrpxgjv] {
    background: #059669;
}

.btn-adjust:disabled[b-el8mrpxgjv] {
    background: #D1D5DB;
    cursor: not-allowed;
}

.empty-state[b-el8mrpxgjv] {
    text-align: center;
    padding: 60px 20px;
    color: #9CA3AF;
}

.empty-state-icon[b-el8mrpxgjv] {
    font-size: 64px;
    margin-bottom: 16px;
}

.empty-state-message[b-el8mrpxgjv] {
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .page-header[b-el8mrpxgjv] {
        flex-direction: column;
    }

    .stats-grid[b-el8mrpxgjv] {
        grid-template-columns: 1fr;
    }

    .card-header[b-el8mrpxgjv] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box[b-el8mrpxgjv] {
        width: 100%;
        margin-top: 12px;
    }

    .items-table[b-el8mrpxgjv] {
        font-size: 12px;
    }

    .items-table th[b-el8mrpxgjv],
    .items-table td[b-el8mrpxgjv] {
        padding: 10px 8px;
    }

    .action-buttons[b-el8mrpxgjv] {
        flex-direction: column;
    }
}
/* /Pages/StockTakeHistory.razor.rz.scp.css */
.page-header[b-6eb0cx2ode] {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #E5E7EB;
}

.page-header h1[b-6eb0cx2ode] {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 8px 0;
}

.page-header p[b-6eb0cx2ode] {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

.button-group[b-6eb0cx2ode] {
    display: flex;
    gap: 12px;
}

.btn-primary[b-6eb0cx2ode] {
    background: #4F46E5;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover[b-6eb0cx2ode] {
    background: #4338CA;
}

.filters-card[b-6eb0cx2ode] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 24px;
    margin-bottom: 24px;
}

.filters-grid[b-6eb0cx2ode] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.form-group[b-6eb0cx2ode] {
    display: flex;
    flex-direction: column;
}

.form-group label[b-6eb0cx2ode] {
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input[b-6eb0cx2ode],
.form-group select[b-6eb0cx2ode] {
    padding: 10px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.form-group input:focus[b-6eb0cx2ode],
.form-group select:focus[b-6eb0cx2ode] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.filter-actions[b-6eb0cx2ode] {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.btn-secondary[b-6eb0cx2ode] {
    background: white;
    color: #6B7280;
    padding: 10px 20px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover[b-6eb0cx2ode] {
    background: #F3F4F6;
}

.stats-grid[b-6eb0cx2ode] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card[b-6eb0cx2ode] {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #4F46E5;
    position: relative;
    transition: all 0.2s ease;
    border: 1px solid #F3F4F6;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-card:hover[b-6eb0cx2ode] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.stat-icon[b-6eb0cx2ode] {
    font-size: 40px;
    margin-bottom: 12px;
}

.stat-value[b-6eb0cx2ode] {
    font-size: 32px;
    font-weight: 700;
    color: #1F2937;
    margin: 8px 0;
}

.stat-label[b-6eb0cx2ode] {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card[b-6eb0cx2ode] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 24px;
}

.card-header[b-6eb0cx2ode] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #E5E7EB;
}

.card-header h2[b-6eb0cx2ode] {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin: 0;
}

.adjustments-table[b-6eb0cx2ode] {
    width: 100%;
    border-collapse: collapse;
}

.adjustments-table thead[b-6eb0cx2ode] {
    background: #F9FAFB;
    border-bottom: 2px solid #E5E7EB;
}

.adjustments-table th[b-6eb0cx2ode] {
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.adjustments-table td[b-6eb0cx2ode] {
    padding: 14px 16px;
    border-bottom: 1px solid #F3F4F6;
    font-size: 14px;
}

.adjustments-table tr:hover[b-6eb0cx2ode] {
    background: #F9FAFB;
}

.product-info[b-6eb0cx2ode] {
    display: flex;
    flex-direction: column;
}

.product-name[b-6eb0cx2ode] {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
}

.product-sku[b-6eb0cx2ode] {
    font-size: 12px;
    color: #9CA3AF;
}

.variance-positive[b-6eb0cx2ode] {
    color: #10B981;
    font-weight: 600;
}

.variance-negative[b-6eb0cx2ode] {
    color: #EF4444;
    font-weight: 600;
}

.variance-none[b-6eb0cx2ode] {
    color: #9CA3AF;
    font-weight: 400;
}

.badge[b-6eb0cx2ode] {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-info[b-6eb0cx2ode] {
    background: #DBEAFE;
    color: #1E40AF;
}

.empty-state[b-6eb0cx2ode] {
    text-align: center;
    padding: 60px 20px;
    color: #9CA3AF;
}

.empty-state-icon[b-6eb0cx2ode] {
    font-size: 64px;
    margin-bottom: 16px;
}

.empty-state-message[b-6eb0cx2ode] {
    font-size: 16px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .page-header[b-6eb0cx2ode] {
        flex-direction: column;
    }

    .stats-grid[b-6eb0cx2ode] {
        grid-template-columns: 1fr;
    }

    .filters-grid[b-6eb0cx2ode] {
        grid-template-columns: 1fr;
    }

    .filter-actions[b-6eb0cx2ode] {
        justify-content: stretch;
        flex-direction: column;
    }

    .adjustments-table[b-6eb0cx2ode] {
        font-size: 12px;
    }

    .adjustments-table th[b-6eb0cx2ode],
    .adjustments-table td[b-6eb0cx2ode] {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .stats-grid[b-6eb0cx2ode] {
        grid-template-columns: 1fr;
    }

    .filter-actions .btn[b-6eb0cx2ode] {
        width: 100%;
        justify-content: center;
    }
}
/* /Pages/Suppliers.razor.rz.scp.css */
/* Page Layout - removed centering */

/* Page Header */
.page-header[b-2yhbqsagyg] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.page-header h1[b-2yhbqsagyg] {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
}

.page-header p[b-2yhbqsagyg] {
    color: #6B7280;
    margin: 0;
    font-size: 14px;
}

.page-actions[b-2yhbqsagyg] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Statistics Cards */
.stats-grid[b-2yhbqsagyg] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card[b-2yhbqsagyg] {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-left: 4px solid #4F46E5;
    position: relative;
    min-height: 70px;
    transition: all 0.2s ease;
    border: 1px solid #F3F4F6;
}

.stat-card:hover[b-2yhbqsagyg] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.stat-value[b-2yhbqsagyg] {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.stat-label[b-2yhbqsagyg] {
    font-size: 12px;
    color: #6B7280;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stat-icon[b-2yhbqsagyg] {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 20px;
    opacity: 0.7;
}

/* Card */
.card[b-2yhbqsagyg] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid #F3F4F6;
}

.card-header[b-2yhbqsagyg] {
    padding: 20px;
    border-bottom: 2px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: #F9FAFB;
}

/* Search and Filter */
.search-box[b-2yhbqsagyg] {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
}

.search-box input[b-2yhbqsagyg] {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.search-box input:focus[b-2yhbqsagyg] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.filter-group[b-2yhbqsagyg] {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-group select[b-2yhbqsagyg] {
    padding: 10px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-group select:focus[b-2yhbqsagyg] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

/* Table */
.table-responsive[b-2yhbqsagyg] {
    overflow-x: auto;
}

.table[b-2yhbqsagyg] {
    width: 100%;
    border-collapse: collapse;
}

.table thead[b-2yhbqsagyg] {
    background: #F9FAFB;
}

.table thead th[b-2yhbqsagyg] {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #E5E7EB;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.table thead th:hover[b-2yhbqsagyg] {
    background: #F3F4F6;
}

.table tbody td[b-2yhbqsagyg] {
    padding: 16px;
    border-bottom: 1px solid #F3F4F6;
    font-size: 14px;
    color: #111827;
}

.table tbody tr:hover[b-2yhbqsagyg] {
    background: #F9FAFB;
}

.table .text-end[b-2yhbqsagyg] {
    text-align: right;
}

.actions-column[b-2yhbqsagyg] {
    width: 120px;
    text-align: right;
}

.btn-actions[b-2yhbqsagyg] {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.btn-icon[b-2yhbqsagyg] {
    background: transparent;
    border: none;
    padding: 6px 8px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.2s;
}

.btn-icon:hover[b-2yhbqsagyg] {
    background: #F3F4F6;
    transform: scale(1.1);
}

/* Badges */
.badge[b-2yhbqsagyg] {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    display: inline-block;
}

.badge.bg-success[b-2yhbqsagyg] {
    background: #D1FAE5;
    color: #065F46;
}

.badge.bg-danger[b-2yhbqsagyg] {
    background: #FEE2E2;
    color: #991B1B;
}

.badge.bg-secondary[b-2yhbqsagyg] {
    background: #F3F4F6;
    color: #4B5563;
}

.badge.bg-warning[b-2yhbqsagyg] {
    background: #FEF3C7;
    color: #92400E;
}

/* Table Footer */
.table-footer[b-2yhbqsagyg] {
    padding: 16px 20px;
    border-top: 2px solid #F3F4F6;
    background: #F9FAFB;
}

.pagination-info[b-2yhbqsagyg] {
    font-size: 13px;
    color: #6B7280;
}

/* Buttons */
.btn[b-2yhbqsagyg] {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary[b-2yhbqsagyg] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover[b-2yhbqsagyg] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-2yhbqsagyg] {
    background: #F3F4F6;
    color: #374151;
}

.btn-secondary:hover[b-2yhbqsagyg] {
    background: #E5E7EB;
}

.btn-danger[b-2yhbqsagyg] {
    background: #DC2626;
    color: white;
}

.btn-danger:hover[b-2yhbqsagyg] {
    background: #B91C1C;
}

/* Modal */
.modal-overlay[b-2yhbqsagyg] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-dialog[b-2yhbqsagyg] {
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-dialog.modal-lg[b-2yhbqsagyg] {
    max-width: 900px;
}

.modal-content[b-2yhbqsagyg] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown-b-2yhbqsagyg 0.3s ease;
}

@keyframes slideDown-b-2yhbqsagyg {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-2yhbqsagyg] {
    padding: 24px;
    border-bottom: 2px solid #F3F4F6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.modal-header.bg-danger[b-2yhbqsagyg] {
    background: linear-gradient(135deg, #DC2626, #991B1B);
}

.modal-header h2[b-2yhbqsagyg] {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.close-button[b-2yhbqsagyg] {
    background: transparent;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background 0.2s;
}

.close-button:hover[b-2yhbqsagyg] {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body[b-2yhbqsagyg] {
    padding: 24px;
    max-height: calc(90vh - 180px);
    overflow-y: auto;
}

.modal-footer[b-2yhbqsagyg] {
    padding: 20px 24px;
    border-top: 2px solid #F3F4F6;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    background: #F9FAFB;
}

/* Forms */
.form-row[b-2yhbqsagyg] {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.form-row.col-md-6[b-2yhbqsagyg] {
    grid-template-columns: repeat(2, 1fr);
}

.form-row .col-md-6[b-2yhbqsagyg] {
    grid-column: span 1;
}

.form-row .col-md-8[b-2yhbqsagyg] {
    grid-column: span 2;
}

.form-row .col-md-4[b-2yhbqsagyg] {
    grid-column: span 1;
}

.form-group[b-2yhbqsagyg] {
    margin-bottom: 16px;
}

.form-group label[b-2yhbqsagyg] {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.form-control[b-2yhbqsagyg] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}

.form-control:focus[b-2yhbqsagyg] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-text[b-2yhbqsagyg] {
    display: block;
    margin-top: 4px;
    font-size: 12px;
}

.text-muted[b-2yhbqsagyg] {
    color: #9CA3AF;
}

.toggle-switch label[b-2yhbqsagyg] {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

/* Loading State */
.loading-state[b-2yhbqsagyg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* Alert */
.alert[b-2yhbqsagyg] {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-danger[b-2yhbqsagyg] {
    background: #FEE2E2;
    border: 1px solid #FCA5A5;
    color: #991B1B;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header[b-2yhbqsagyg] {
        flex-direction: column;
        align-items: stretch;
    }

    .page-actions[b-2yhbqsagyg] {
        width: 100%;
    }

    .stats-grid[b-2yhbqsagyg] {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row[b-2yhbqsagyg] {
        grid-template-columns: 1fr !important;
    }

    .form-row .col-md-6[b-2yhbqsagyg],
    .form-row .col-md-8[b-2yhbqsagyg],
    .form-row .col-md-4[b-2yhbqsagyg] {
        grid-column: span 1 !important;
    }

    .search-box[b-2yhbqsagyg] {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .stats-grid[b-2yhbqsagyg] {
        grid-template-columns: 1fr;
    }

    .modal-dialog[b-2yhbqsagyg] {
        max-width: 100%;
        padding: 0;
    }
}
/* /Pages/UserSessions.razor.rz.scp.css */
/* Page Layout - removed centering */

.page-header[b-7jix1imljh] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.page-header h1[b-7jix1imljh] {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.page-header p[b-7jix1imljh] {
    margin: 4px 0 0 0;
    color: #6B7280;
}

.page-actions[b-7jix1imljh] {
    display: flex;
    gap: 12px;
}

/* Loading State */
.loading-state[b-7jix1imljh] {
    text-align: center;
    padding: 60px 20px;
}

.spinner[b-7jix1imljh] {
    display: inline-block;
    width: 48px;
    height: 48px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4F46E5;
    border-radius: 50%;
    animation: spin-b-7jix1imljh 1s linear infinite;
}

@keyframes spin-b-7jix1imljh {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-state p[b-7jix1imljh] {
    margin-top: 20px;
    color: #6B7280;
    font-size: 15px;
}

/* Statistics Cards */
.stats-grid[b-7jix1imljh] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.stat-card[b-7jix1imljh] {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #4F46E5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.stat-card:hover[b-7jix1imljh] {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.stat-card:nth-child(2)[b-7jix1imljh] {
    border-left-color: #10B981;
}

.stat-card:nth-child(3)[b-7jix1imljh] {
    border-left-color: #EF4444;
}

.stat-card:nth-child(4)[b-7jix1imljh] {
    border-left-color: #F59E0B;
}

.stat-card:nth-child(5)[b-7jix1imljh] {
    border-left-color: #8B5CF6;
}

.stat-value[b-7jix1imljh] {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.stat-label[b-7jix1imljh] {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

.stat-icon[b-7jix1imljh] {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    opacity: 0.25;
}

/* Filters Card */
.filters-card[b-7jix1imljh] {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.filters-row[b-7jix1imljh] {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-item[b-7jix1imljh] {
    flex: 1;
    min-width: 180px;
}

.filter-item label[b-7jix1imljh] {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.filter-item .form-control[b-7jix1imljh] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 14px;
    background: white;
    transition: all 0.2s;
}

.filter-item .form-control:focus[b-7jix1imljh] {
    outline: none;
    border-color: #4F46E5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.filter-item select.form-control[b-7jix1imljh] {
    cursor: pointer;
}

.filter-item input[type="date"][b-7jix1imljh] {
    cursor: pointer;
}

/* Table Card */
.table-card[b-7jix1imljh] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.table[b-7jix1imljh] {
    width: 100%;
    border-collapse: collapse;
}

.table thead[b-7jix1imljh] {
    background: #F9FAFB;
    border-bottom: 2px solid #E5E7EB;
}

.table th[b-7jix1imljh] {
    padding: 14px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table td[b-7jix1imljh] {
    padding: 14px 16px;
    font-size: 14px;
    color: #111827;
    border-bottom: 1px solid #F3F4F6;
}

.table tbody tr:hover[b-7jix1imljh] {
    background: #F9FAFB;
}

.table tbody tr:last-child td[b-7jix1imljh] {
    border-bottom: none;
}

/* User Info */
.user-info[b-7jix1imljh] {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-info strong[b-7jix1imljh] {
    font-weight: 600;
    color: #111827;
}

.text-muted[b-7jix1imljh] {
    color: #9CA3AF;
}

.small[b-7jix1imljh] {
    font-size: 12px;
}

/* Badges */
.badge[b-7jix1imljh] {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
}

.badge-success[b-7jix1imljh] {
    background: #D1FAE5;
    color: #065F46;
}

.badge-secondary[b-7jix1imljh] {
    background: #F3F4F6;
    color: #374151;
}

.badge-info[b-7jix1imljh] {
    background: #DBEAFE;
    color: #1E40AF;
}

.badge-warning[b-7jix1imljh] {
    background: #FEF3C7;
    color: #92400E;
}

/* Browser Info Tooltip */
.browser-info[b-7jix1imljh] {
    cursor: help;
    color: #6B7280;
}

/* Buttons */
.btn[b-7jix1imljh] {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary[b-7jix1imljh] {
    background: #4F46E5;
    color: white;
}

.btn-primary:hover[b-7jix1imljh] {
    background: #4338CA;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(79, 70, 229, 0.3);
}

.btn-secondary[b-7jix1imljh] {
    background: #F3F4F6;
    color: #374151;
}

.btn-secondary:hover[b-7jix1imljh] {
    background: #E5E7EB;
}

.btn-warning[b-7jix1imljh] {
    background: #FBBF24;
    color: #78350F;
}

.btn-warning:hover[b-7jix1imljh] {
    background: #F59E0B;
}

.btn-info[b-7jix1imljh] {
    background: #3B82F6;
    color: white;
}

.btn-info:hover[b-7jix1imljh] {
    background: #2563EB;
}

.btn-sm[b-7jix1imljh] {
    padding: 6px 12px;
    font-size: 13px;
}

/* Modal */
.modal-overlay[b-7jix1imljh] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content[b-7jix1imljh] {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header[b-7jix1imljh] {
    padding: 24px 28px;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3[b-7jix1imljh] {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.btn-close[b-7jix1imljh] {
    background: transparent;
    border: none;
    font-size: 28px;
    color: #9CA3AF;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-close:hover[b-7jix1imljh] {
    background: #F3F4F6;
    color: #374151;
}

.modal-body[b-7jix1imljh] {
    padding: 24px 28px;
}

.modal-footer[b-7jix1imljh] {
    padding: 20px 28px;
    border-top: 1px solid #E5E7EB;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Detail Grid */
.detail-grid[b-7jix1imljh] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.detail-row[b-7jix1imljh] {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
}

.detail-row:last-child[b-7jix1imljh] {
    border-bottom: none;
}

.detail-label[b-7jix1imljh] {
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value[b-7jix1imljh] {
    font-size: 14px;
    color: #111827;
    font-weight: 500;
    word-break: break-word;
}

/* Alert */
.alert[b-7jix1imljh] {
    padding: 16px 20px;
    border-radius: 10px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.alert-danger[b-7jix1imljh] {
    background: #FEE2E2;
    border: 1px solid #FECACA;
    color: #991B1B;
}

.alert strong[b-7jix1imljh] {
    font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header[b-7jix1imljh] {
        flex-direction: column;
        align-items: flex-start;
    }

    .stats-grid[b-7jix1imljh] {
        grid-template-columns: 1fr;
    }

    .filters-row[b-7jix1imljh] {
        flex-direction: column;
    }

    .filter-item[b-7jix1imljh] {
        width: 100%;
    }

    .table-card[b-7jix1imljh] {
        overflow-x: auto;
    }

    .table[b-7jix1imljh] {
        min-width: 800px;
    }

    .detail-row[b-7jix1imljh] {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .modal-content[b-7jix1imljh] {
        max-width: 100%;
        margin: 0;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .stats-grid[b-7jix1imljh] {
        grid-template-columns: 1fr;
    }

    .modal-content[b-7jix1imljh] {
        border-radius: 12px 12px 0 0;
    }
}
/* /Shared/MainLayout.razor.rz.scp.css */
.page[b-cgawoszhv1] {
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    --sidebar-width: 0px;
}

    .page.no-sidebar .sidebar[b-cgawoszhv1] {
        display: none;
    }

    .page.no-sidebar main[b-cgawoszhv1] {
        margin-left: 0;
        width: 100%;
    }

main[b-cgawoszhv1] {
    flex: 1;
    transition: margin-left 0.3s ease;
    width: 100%;
    max-width: none;
    padding: 0 !important;
    margin-left: var(--sidebar-width);
    margin-right: 1vw;
}

@media (max-width: 768px) {
    main[b-cgawoszhv1] {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

main > article.content[b-cgawoszhv1] {
    display: block;
    width: 100%;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

article.content .main-content[b-cgawoszhv1] {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

article.content > *[b-cgawoszhv1] {
    width: 100%;
    max-width: none !important;
    margin: 0 !important;
}

.sidebar[b-cgawoszhv1] {
    background: linear-gradient(180deg, #1e293b 0%, #334155 100%);
    position: relative;
    transition: all 0.3s ease;
}

.sidebar-toggle[b-cgawoszhv1] {
    position: absolute;
    top: 16px;
    right: -16px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar-toggle:hover[b-cgawoszhv1] {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5), 0 3px 10px rgba(0, 0, 0, 0.15);
}

.sidebar-toggle:active[b-cgawoszhv1] {
    transform: scale(1.0);
}

.sidebar-toggle i[b-cgawoszhv1] {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.sidebar.collapsed .sidebar-toggle i[b-cgawoszhv1] {
    transform: rotate(180deg);
}

.top-row[b-cgawoszhv1] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-cgawoszhv1]  a, .top-row .btn-link[b-cgawoszhv1] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-cgawoszhv1] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-cgawoszhv1] {
        display: none;
    }

    .top-row.auth[b-cgawoszhv1] {
        justify-content: space-between;
    }

    .top-row a[b-cgawoszhv1], .top-row .btn-link[b-cgawoszhv1] {
        margin-left: 0;
    }
    
    .sidebar-toggle[b-cgawoszhv1] {
        display: none;
    }
}

@media (min-width: 641px) {
    .page[b-cgawoszhv1] {
        flex-direction: row;
        /* Responsive ratio on larger screens, bounded for usability */
        --sidebar-width: 17vw;
    }

    .page.sidebar-collapsed[b-cgawoszhv1] {
        --sidebar-width: 70px;
    }

    .sidebar[b-cgawoszhv1] {
        width: var(--sidebar-width);
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        overflow-x: hidden;
        overflow-y: auto;
        z-index: 1000;
        /* Smooth scrollbar */
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    }
    
    .sidebar[b-cgawoszhv1]::-webkit-scrollbar {
        width: 5px;
    }
    
    .sidebar[b-cgawoszhv1]::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .sidebar[b-cgawoszhv1]::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }
    
    .sidebar[b-cgawoszhv1]::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
    
    .sidebar.collapsed[b-cgawoszhv1] {
        width: 70px;
    }
    
    /* Main content takes full available width */
    main[b-cgawoszhv1] {
        transition: all 0.3s ease;
    }
    
    /* Hide all text elements when collapsed */
    .sidebar.collapsed[b-cgawoszhv1]  .nav-text,
    .sidebar.collapsed[b-cgawoszhv1]  .brand-text,
    .sidebar.collapsed[b-cgawoszhv1]  .user-info,
    .sidebar.collapsed[b-cgawoszhv1]  .sidebar-divider,
    .sidebar.collapsed[b-cgawoszhv1]  small {
        display: none !important;
    }
    
    /* Center navbar brand when collapsed */
    .sidebar.collapsed[b-cgawoszhv1]  .navbar-brand {
        justify-content: center;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .sidebar.collapsed[b-cgawoszhv1]  .navbar-brand i {
        margin-right: 0 !important;
        font-size: 26px;
    }
    
    /* Center nav links when collapsed */
    .sidebar.collapsed[b-cgawoszhv1]  .nav-link {
        justify-content: center;
        padding-left: 0 !important;
        padding-right: 0 !important;
        position: relative;
    }
    
    .sidebar.collapsed[b-cgawoszhv1]  .nav-link i {
        margin-right: 0 !important;
        font-size: 24px;
    }
    
    /* Center button links when collapsed */
    .sidebar.collapsed[b-cgawoszhv1]  .btn-link {
        justify-content: center;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    .sidebar.collapsed[b-cgawoszhv1]  .btn-link i {
        margin-right: 0 !important;
        font-size: 24px;
    }
    
    /* Adjust nav item padding when collapsed */
    .sidebar.collapsed[b-cgawoszhv1]  .nav-item.px-3 {
        padding-left: 0.25rem !important;
        padding-right: 0.25rem !important;
    }
    
    /* Ensure icons are visible and centered */
    .sidebar.collapsed[b-cgawoszhv1]  i {
        display: inline-block;
        width: 100%;
        text-align: center;
    }
    
    main[b-cgawoszhv1] {
        transition: all 0.3s ease;
        width: 100%;
        max-width: none;
        padding: 0 !important;
    }

    .top-row[b-cgawoszhv1] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-cgawoszhv1] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }

    article[b-cgawoszhv1] {
        display: block;
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* Theme Styling */
.page[b-cgawoszhv1] {
    --theme-primary: #2563eb;
    --theme-secondary: #6366f1;
    --theme-accent: #f59e0b;
    --theme-sidebar-bg-1: #1e293b;
    --theme-sidebar-bg-2: #334155;
}

/* Theme A: Ocean Blue */
.page.theme-a[b-cgawoszhv1] {
    --theme-primary: #1e40af;
    --theme-secondary: #2563eb;
    --theme-accent: #f59e0b;
    --theme-sidebar-bg-1: #0f172a;
    --theme-sidebar-bg-2: #1e3a5f;
}

/* Theme B: Forest Green */
.page.theme-b[b-cgawoszhv1] {
    --theme-primary: #047857;
    --theme-secondary: #10b981;
    --theme-accent: #22c55e;
    --theme-sidebar-bg-1: #065f46;
    --theme-sidebar-bg-2: #047857;
}

/* Theme C: Sky Blue */
.page.theme-c[b-cgawoszhv1] {
    --theme-primary: #0369a1;
    --theme-secondary: #0284c7;
    --theme-accent: #38bdf8;
    --theme-sidebar-bg-1: #082f49;
    --theme-sidebar-bg-2: #0c4a6e;
}

/* Theme D: Sunset Orange */
.page.theme-d[b-cgawoszhv1] {
    --theme-primary: #9333ea;
    --theme-secondary: #a855f7;
    --theme-accent: #f97316;
    --theme-sidebar-bg-1: #3f0f12;
    --theme-sidebar-bg-2: #7c2d12;
}

/* Theme E: Ruby Red */
.page.theme-e[b-cgawoszhv1] {
    --theme-primary: #b91c1c;
    --theme-secondary: #dc2626;
    --theme-accent: #fca5a5;
    --theme-sidebar-bg-1: #7f1d1d;
    --theme-sidebar-bg-2: #991b1b;
}

/* Theme F: Deep Green */
.page.theme-f[b-cgawoszhv1] {
    --theme-primary: #155e75;
    --theme-secondary: #0d9488;
    --theme-accent: #6ee7b7;
    --theme-sidebar-bg-1: #0d3b3b;
    --theme-sidebar-bg-2: #134e4a;
}

/* Theme G: Royal Purple */
.page.theme-g[b-cgawoszhv1] {
    --theme-primary: #6b21a8;
    --theme-secondary: #7c3aed;
    --theme-accent: #d8b4fe;
    --theme-sidebar-bg-1: #3f0f5c;
    --theme-sidebar-bg-2: #5b21b6;
}

/* Theme H: Midnight Navy */
.page.theme-h[b-cgawoszhv1] {
    --theme-primary: #1e3a8a;
    --theme-secondary: #1e40af;
    --theme-accent: #60a5fa;
    --theme-sidebar-bg-1: #0f172a;
    --theme-sidebar-bg-2: #1e3a8a;
}

/* Apply theme colors to sidebar */
.page .sidebar[b-cgawoszhv1] {
    background: linear-gradient(180deg, var(--theme-sidebar-bg-1) 0%, var(--theme-sidebar-bg-2) 100%);
}

/* Apply theme colors to buttons */
.page[b-cgawoszhv1]  .btn-primary {
    background: var(--theme-primary) !important;
    border-color: var(--theme-primary) !important;
}

.page[b-cgawoszhv1]  .btn-primary:hover:not(:disabled) {
    background: var(--theme-secondary) !important;
    border-color: var(--theme-secondary) !important;
}

/* Apply theme colors to links */
.page[b-cgawoszhv1]  a {
    color: var(--theme-primary);
}

.page[b-cgawoszhv1]  a:hover {
    color: var(--theme-secondary);
}

/* Apply theme colors to badges */
.page[b-cgawoszhv1]  .badge-primary {
    background-color: var(--theme-primary) !important;
}

/* Apply theme colors to alerts */
.page[b-cgawoszhv1]  .alert-info {
    border-left: 4px solid var(--theme-accent);
}

/* Apply theme colors to form focus */
.page[b-cgawoszhv1]  .form-control:focus {
    border-color: var(--theme-primary);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.2);
}

/* Smooth theme transition */
.page[b-cgawoszhv1],
.page .sidebar[b-cgawoszhv1],
.page[b-cgawoszhv1]  .btn-primary,
.page[b-cgawoszhv1]  a {
    transition: all 0.4s ease;
}
/* /Shared/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-hlq7tn9di4] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-hlq7tn9di4] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-hlq7tn9di4] {
    font-size: 0.85rem;
}

    .navbar-brand i[b-hlq7tn9di4] {
        margin-right: 0.4rem;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .navbar-brand .brand-text[b-hlq7tn9di4] {
        transition: opacity 0.3s ease, width 0.3s ease;
    }

.oi[b-hlq7tn9di4] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-hlq7tn9di4] {
    font-size: 0.75rem;
    padding-bottom: 0.3rem;
}

    .nav-item:first-of-type[b-hlq7tn9di4] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-hlq7tn9di4] {
        padding-bottom: 1rem;
    }

    .nav-item[b-hlq7tn9di4]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 2.2rem;
        display: flex;
        align-items: center;
        line-height: 2.2rem;
    }

    .nav-item[b-hlq7tn9di4]  a i {
        margin-right: 0.5rem;
        font-size: 0.95rem;
        min-width: 1.2rem;
        text-align: center;
        transition: all 0.3s ease;
    }

    .nav-item[b-hlq7tn9di4]  .btn-link i {
        margin-right: 0.5rem;
        font-size: 0.95rem;
        min-width: 1.2rem;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .nav-item[b-hlq7tn9di4]  .nav-text,
    .nav-item[b-hlq7tn9di4]  .user-info {
        transition: opacity 0.3s ease, width 0.3s ease;
    }

.nav-item[b-hlq7tn9di4]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-hlq7tn9di4]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-hlq7tn9di4] {
        display: none;
    }

    .collapse[b-hlq7tn9di4] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-hlq7tn9di4] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Shared/Pagination.razor.rz.scp.css */
.pagination-container[b-gjh1m7p8fn] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    flex-wrap: wrap;
}

.pagination-info[b-gjh1m7p8fn] {
    color: #6B7280;
    font-size: 14px;
    font-weight: 500;
}

.pagination-controls[b-gjh1m7p8fn] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.pagination-btn[b-gjh1m7p8fn] {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    border: 1px solid #E5E7EB;
    background: white;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    color: #374151;
    font-weight: 500;
}

.pagination-btn:hover:not(:disabled):not(.active)[b-gjh1m7p8fn] {
    background: #F3F4F6;
    border-color: #D1D5DB;
}

.pagination-btn:disabled[b-gjh1m7p8fn] {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-btn.active[b-gjh1m7p8fn] {
    background: #4F46E5;
    border-color: #4F46E5;
    color: white;
    font-weight: 600;
}

.pagination-ellipsis[b-gjh1m7p8fn] {
    padding: 0 8px;
    color: #9CA3AF;
    font-weight: 600;
}

.page-size-selector[b-gjh1m7p8fn] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-size-selector label[b-gjh1m7p8fn] {
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
    margin: 0;
}

.page-size-selector select[b-gjh1m7p8fn] {
    width: auto;
    min-width: 80px;
    padding: 6px 12px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

@media (max-width: 768px) {
    .pagination-container[b-gjh1m7p8fn] {
        flex-direction: column;
        align-items: stretch;
    }

    .pagination-controls[b-gjh1m7p8fn] {
        justify-content: center;
    }

    .page-size-selector[b-gjh1m7p8fn] {
        justify-content: center;
    }

    .pagination-info[b-gjh1m7p8fn] {
        text-align: center;
    }
}
/* /Shared/ToastContainer.razor.rz.scp.css */
.toast-container[b-95b78qa3wq] {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.toast[b-95b78qa3wq] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    overflow: hidden;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 300px;
}

.toast.show[b-95b78qa3wq] {
    transform: translateX(0);
    opacity: 1;
}

.toast-header[b-95b78qa3wq] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-weight: 600;
}

.toast-icon[b-95b78qa3wq] {
    font-size: 20px;
    font-weight: bold;
}

.toast-close[b-95b78qa3wq] {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover[b-95b78qa3wq] {
    color: #000;
}

.toast-body[b-95b78qa3wq] {
    padding: 12px 16px;
    color: #333;
}

.toast-success .toast-header[b-95b78qa3wq] {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.toast-success .toast-close[b-95b78qa3wq] {
    color: rgba(255,255,255,0.8);
}

.toast-success .toast-close:hover[b-95b78qa3wq] {
    color: white;
}

.toast-error .toast-header[b-95b78qa3wq] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.toast-error .toast-close[b-95b78qa3wq] {
    color: rgba(255,255,255,0.8);
}

.toast-error .toast-close:hover[b-95b78qa3wq] {
    color: white;
}

.toast-warning .toast-header[b-95b78qa3wq] {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.toast-warning .toast-close[b-95b78qa3wq] {
    color: rgba(255,255,255,0.8);
}

.toast-warning .toast-close:hover[b-95b78qa3wq] {
    color: white;
}

.toast-info .toast-header[b-95b78qa3wq] {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.toast-info .toast-close[b-95b78qa3wq] {
    color: rgba(255,255,255,0.8);
}

.toast-info .toast-close:hover[b-95b78qa3wq] {
    color: white;
}

@media (max-width: 480px) {
    .toast-container[b-95b78qa3wq] {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .toast[b-95b78qa3wq] {
        min-width: 0;
    }
}
