/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-pr7j2w7lq6] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-pr7j2w7lq6] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Shared/EvoTable/EvoTable.razor.rz.scp.css */
/* EvoTable Container */
.evo-table-container[b-vx2roakqad] {
    width: 100%;
    padding: 0;
    margin: 0;
}

.evo-table[b-vx2roakqad] {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Row Styling */
.evo-table-row[b-vx2roakqad] {
    display: grid;
    border-spacing: 0;
}

.evo-table-row:not(:first-child)[b-vx2roakqad] {
    margin-top: -1px;
}

/* Header Row */
.evo-table-header-row[b-vx2roakqad] {
    background-color: #f5f5f5;
    font-weight: 600;
}

.evo-table-header-row .evo-table-cell[b-vx2roakqad] {
    cursor: pointer;
    user-select: none;
}

.evo-table-header-row .evo-table-cell:hover[b-vx2roakqad] {
    background-color: #e8e8e8;
}

/* Filter Row */
.evo-table-filter-row[b-vx2roakqad] {
    background-color: #fafafa;
}

.evo-table-filter-row .evo-table-cell[b-vx2roakqad] {
    padding: 2px;
}

/* Data Rows */
.evo-table-even-row[b-vx2roakqad] {
    background-color: #ffffff;
}

.evo-table-odd-row[b-vx2roakqad] {
    background-color: #f9f9f9;
}

.evo-table-editing-row[b-vx2roakqad] {
    background-color: #fff8e1 !important;
}

.evo-table-empty-row[b-vx2roakqad] {
    background-color: #fafafa;
    color: #888;
    font-style: italic;
}

/* Cell Styling */
.evo-table-cell[b-vx2roakqad] {
    border: 1px solid #ddd;
    padding: 0 4px;
    position: relative;
    min-height: 24px;
    user-select: none;
    display: flex;
    align-items: center;
    font-size: 0.8125rem;
    overflow: hidden;
}

.evo-table-cell:not(:first-child)[b-vx2roakqad] {
    margin-left: -1px;
}

/* Cell Alignment */
.text-left[b-vx2roakqad] {
    justify-content: flex-start;
    text-align: left;
}

.text-right[b-vx2roakqad] {
    justify-content: flex-end;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.text-center[b-vx2roakqad] {
    justify-content: center;
    text-align: center;
}

/* Sort Indicator */
.sort-indicator[b-vx2roakqad] {
    margin-left: 4px;
    font-size: 0.7rem;
    color: #666;
}

/* Filter Input */
.filter-input[b-vx2roakqad] {
    width: 100%;
    height: 100%;
    padding: 2px 4px;
    border: none;
    background-color: #e3f2fd;
    font-size: 0.75rem;
    box-sizing: border-box;
}

.filter-input:focus[b-vx2roakqad] {
    outline: 1px solid #2196F3;
    background-color: #bbdefb;
}

/* Cell Value - matches editor dimensions exactly */
.cell-value[b-vx2roakqad] {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 22px;
    line-height: 22px;
}

.text-right .cell-value[b-vx2roakqad] {
    justify-content: flex-end;
}

.text-center .cell-value[b-vx2roakqad] {
    justify-content: center;
}

/* Cell Editor - matches cell-value dimensions exactly */
.cell-editor[b-vx2roakqad] {
    width: 100%;
    height: 22px;
    min-height: 22px;
    line-height: 22px;
    padding: 0 4px;
    margin: 0;
    border: none;
    background-color: #fff8e1;
    font-size: 0.8125rem;
    font-family: inherit;
    box-sizing: border-box;
}

.cell-editor:focus[b-vx2roakqad] {
    outline: 2px solid #ffc107;
    outline-offset: -2px;
    background-color: #ffecb3;
}

.cell-editor.text-right[b-vx2roakqad] {
    text-align: right;
}

.cell-editor.text-center[b-vx2roakqad] {
    text-align: center;
}

/* Hide number input spinners */
.cell-editor[type="number"][b-vx2roakqad]::-webkit-outer-spin-button,
.cell-editor[type="number"][b-vx2roakqad]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cell-editor[type="number"][b-vx2roakqad] {
    -moz-appearance: textfield;
}

/* Multi-line cell content */
.cell-content-multi-line[b-vx2roakqad] {
    display: flex;
    flex-direction: column;
    gap: 1px;
    width: 100%;
    padding: 2px 0;
}

.cell-line-primary[b-vx2roakqad] {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.2;
}

.cell-line-secondary[b-vx2roakqad] {
    font-size: 0.6875rem;
    color: #666;
    line-height: 1.1;
}

/* Cell content with progress bar */
.cell-content-with-progress[b-vx2roakqad] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    padding: 2px 0;
}

.cell-content-text[b-vx2roakqad] {
    display: flex;
    flex-direction: column;
    gap: 1px;
    flex: 1;
    padding-bottom: 6px;
}

/* Alignment for progress cells */
.text-right .cell-content-text[b-vx2roakqad] {
    align-items: flex-end;
    text-align: right;
}

.text-center .cell-content-text[b-vx2roakqad] {
    align-items: center;
    text-align: center;
}

/* Progress bar */
.cell-progress-bar[b-vx2roakqad] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #e0e0e0;
    overflow: hidden;
}

.cell-progress-fill[b-vx2roakqad] {
    height: 100%;
    background-color: #4CAF50;
    transition: width 0.3s ease;
}

/* Logo image styling */
.cell-logo-image[b-vx2roakqad] {
    max-width: 32px;
    max-height: 24px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Clickable row hover */
.evo-table-row:not(.evo-table-header-row):not(.evo-table-filter-row):not(.evo-table-empty-row):hover[b-vx2roakqad] {
    background-color: rgba(0, 0, 0, 0.04);
    cursor: pointer;
}

/* Header cell hover when sortable */
.evo-table-header-cell[sortable]:hover[b-vx2roakqad] {
    background-color: #e0e0e0;
}
/* /Components/Shared/ProductDetailPanel.razor.rz.scp.css */
/* Force autocomplete input to use full width */
.product-search[b-ladpv3flpj]  input.mud-input-slot {
    flex: 1 1 100% !important;
    width: 100% !important;
}

.product-search[b-ladpv3flpj]  div.mud-input-slot {
    display: none !important;
    flex: 0 0 0 !important;
    width: 0 !important;
}
