@import '_content/Blazored.Modal/Blazored.Modal.bundle.scp.css';
@import '_content/Blazored.Toast/Blazored.Toast.bundle.scp.css';

/* /Components/FilteredTable.razor.rz.scp.css */
/* 
  IMPORTANT:
  We now render most of the markup inside child components.
  FilteredTable.razor.css is CSS-isolated and would normally NOT apply to child markup.
  ::deep makes these styles pierce through to descendants rendered by child components.
*/

/* (Optional) shared helper if you want consistent spacing */
[b-wykuz0a2do] .section-gap {
    margin-bottom: 1rem;
}

/* Sample group styles - More compact */
[b-wykuz0a2do] .sample-group:last-child {
    border-bottom: none;
}

[b-wykuz0a2do] .sample-header {
    transition: background-color 0.2s ease;
    border-radius: 0;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
}

    [b-wykuz0a2do] .sample-header:hover {
        background-color: #f8f9fa;
    }

[b-wykuz0a2do] .sample-header-expanded {
    background-color: #f8f9fa;
}

[b-wykuz0a2do] .sample-header-collapsed {
    background-color: #ffffff;
}

/* Compact sample ID styling */
[b-wykuz0a2do] .sample-id {
    font-size: 1.1rem;
    color: #369318;
}

/* Compact phrase container */
[b-wykuz0a2do] .sample-phrase-container .compact-select {
    min-width: 200px;
    max-width: 250px;
}

[b-wykuz0a2do] .phrase-dropdown {
    position: relative;
}

[b-wykuz0a2do] .phrase-dropdown-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1040;
}

[b-wykuz0a2do] .phrase-dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    z-index: 1051;
}

[b-wykuz0a2do] .phrase-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    z-index: 1051;
    min-width: 250px;
    max-width: 320px;
    max-height: 260px;
    overflow-y: auto;
    padding: 0.35rem 0;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    background-color: #ffffff;
}

[b-wykuz0a2do] .phrase-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.45rem 0.75rem;
    border: 0;
    background: transparent;
    text-align: left;
}

[b-wykuz0a2do] .phrase-dropdown-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1rem;
    height: 1rem;
    border: 1px solid #adb5bd;
    border-radius: 0.2rem;
    color: #ffffff;
    font-size: 0.75rem;
    line-height: 1;
    flex: 0 0 auto;
}

[b-wykuz0a2do] .phrase-dropdown-check.selected {
    border-color: #369318;
    background-color: #369318;
}

[b-wykuz0a2do] .phrase-dropdown-item:hover:not(:disabled) {
    background-color: #f8f9fa;
}

[b-wykuz0a2do] .phrase-dropdown-item.selected {
    background-color: rgba(54, 147, 24, 0.08);
}

[b-wykuz0a2do] .phrase-dropdown-item:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Expand icon animation */
[b-wykuz0a2do] .expand-icon {
    transition: transform 0.2s ease;
    color: #369318;
    font-size: 0.9rem;
}

    [b-wykuz0a2do] .expand-icon.expanded {
        transform: rotate(90deg);
    }

/* Sample details expandable content */
[b-wykuz0a2do] .sample-details {
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s;
    will-change: max-height, opacity;
    background-color: #f8f9fa;
}

    [b-wykuz0a2do] .sample-details.expanded {
        max-height: 2000px;
        opacity: 1;
    }

    [b-wykuz0a2do] .sample-details.collapsed {
        max-height: 0;
        opacity: 0;
    }

/* Details container */
[b-wykuz0a2do] .details-container {
    padding: 1rem;
    background-color: #f8f9fa;
}

/* Table styling */
[b-wykuz0a2do] .details-table {
    border: none;
    background-color: #ffffff;
}

[b-wykuz0a2do] .table-header {
    background-color: #f8f9fa;
}

    [b-wykuz0a2do] .table-header th {
        border-top: none;
        border-bottom: 2px solid #dee2e6;
        padding: 0.875rem;
        font-size: 1rem;
        font-weight: 600;
        color: #369318;
        background-color: #f8f9fa;
    }

[b-wykuz0a2do] .details-table td {
    border-top: 1px solid #dee2e6;
    padding: 0.875rem;
    vertical-align: middle;
    font-size: 1rem;
    background-color: #ffffff;
}

[b-wykuz0a2do] .details-table tbody tr:hover {
    background-color: #f3f6f9;
}

    [b-wykuz0a2do] .details-table tbody tr:hover td {
        background-color: #f3f6f9;
    }

/* Cell-specific styling for better readability */
[b-wykuz0a2do] .parameter-cell {
    font-weight: 500;
    color: #2c3e50;
}

[b-wykuz0a2do] .analysis-cell {
    color: #495057;
}

[b-wykuz0a2do] .result-cell .result-badge {
    font-size: 0.9rem;
    padding: 0.375rem 0.75rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

[b-wykuz0a2do] .unit-cell {
    font-size: 0.9rem;
    color: #6c757d;
}

[b-wykuz0a2do] .message-cell {
    font-size: 1rem;
    line-height: 1.4;
}

[b-wykuz0a2do] .source-cell {
    font-size: 0.95rem;
    color: #6c757d;
}

[b-wykuz0a2do] .severity-cell {
    text-align: center;
}

/* Button styling */
[b-wykuz0a2do] .btn-outline-secondary {
    border-color: #369318;
    color: #369318;
}

    [b-wykuz0a2do] .btn-outline-secondary:hover {
        background-color: #369318;
        border-color: #369318;
        color: white;
    }

/* Filter input styling */
[b-wykuz0a2do] .input-group .form-control:focus {
    border-color: #369318;
    box-shadow: 0 0 0 0.2rem rgba(54, 147, 24, 0.25);
}

/* Badge improvements */
[b-wykuz0a2do] .badge {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Ensure card backgrounds are white */
[b-wykuz0a2do] .card {
    background-color: #ffffff;
}

[b-wykuz0a2do] .card-body {
    background-color: #ffffff;
}

[b-wykuz0a2do] .validation-card-header {
    cursor: pointer;
}

[b-wykuz0a2do] .validation-group-toggle {
    width: 1.75rem;
    min-width: 1.75rem;
    padding: 0;
    color: #495057;
    text-decoration: none;
}

[b-wykuz0a2do] .validation-group-toggle:hover,
[b-wykuz0a2do] .validation-group-toggle:focus {
    color: #212529;
    text-decoration: none;
}

[b-wykuz0a2do] .validation-group-toggle-spacer {
    display: inline-block;
    width: 1.75rem;
    min-width: 1.75rem;
}

[b-wykuz0a2do] .validation-detail-row td {
    padding: 0;
    background-color: #f8f9fa !important;
}

[b-wykuz0a2do] .validation-detail-list {
    max-height: 22rem;
    overflow: auto;
    padding: 0.75rem 1rem 0.75rem 3.25rem;
    border-top: 1px solid #dee2e6;
}

[b-wykuz0a2do] .validation-detail-item {
    padding: 0.35rem 0;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.35;
}

[b-wykuz0a2do] .validation-detail-item + .validation-detail-item {
    border-top: 1px solid #e9ecef;
}

/* Make sure other tables (non-details) maintain white backgrounds */
[b-wykuz0a2do] .table:not(.details-table) {
    background-color: #ffffff;
}

    [b-wykuz0a2do] .table:not(.details-table) td {
        background-color: #ffffff;
    }

    [b-wykuz0a2do] .table:not(.details-table) tbody tr:hover {
        background-color: #f3f6f9;
    }




/* /Components/FilteredTableComponents/GridSelect.razor.rz.scp.css */
/* Selects - unified look for ALL dropdowns (main, detail, left menu) */
.excel-select[b-vehhf0peja] {
    width: 100%;
    max-width: 170px;
    font-size: 0.85rem;
    border: 1px solid #dee2e6;
    border-radius: 0.3rem;
    background: #ffffff;
    padding: 0.15rem 0.25rem;
    height: calc(var(--excel-row-h) - 8px);
    appearance: auto;
    box-sizing: border-box;
    display: block; /* centers nicely in table cells */
    margin: 0 auto; /* centers nicely in table cells */
}

    .excel-select:focus[b-vehhf0peja] {
        outline: none;
        border-color: #369318;
        box-shadow: 0 0 0 0.15rem rgba(54, 147, 24, 0.20);
    }
/* /Components/FilteredTableComponents/GridV2Table.razor.rz.scp.css */
 /*
   Grid V2 table styling.
*/
.excel-grid-wrap[b-gr9qhwsxem] {
    --excel-row-h: 34px;
    --excel-col-w: 200px;
    --excel-left-col-min: 280px;
    --excel-left-col-max: 340px;
    background: #ffffff;
    position: relative;
}

.excel-grid-wrap.excel-grid-compact[b-gr9qhwsxem] {
    --excel-col-w: 140px;
    --excel-left-col-min: 190px;
    --excel-left-col-max: 240px;
}

.excel-grid-toolbar[b-gr9qhwsxem] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #dee2e6;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.excel-grid-title[b-gr9qhwsxem] {
    font-size: 0.95rem;
}

.excel-grid-actions[b-gr9qhwsxem] {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Scroll container */
.excel-grid-scroll[b-gr9qhwsxem] {
    overflow: auto;
    max-height: calc(100vh - 320px);
}

/* Table */
.excel-grid-table[b-gr9qhwsxem] {
    border-collapse: separate;
    border-spacing: 0;
    width: max-content;
    min-width: max-content;
    background: #ffffff;
}

    .excel-grid-table th[b-gr9qhwsxem],
    .excel-grid-table td[b-gr9qhwsxem] {
        vertical-align: middle;
        background: #ffffff;
        box-sizing: border-box;
    }

    /* Force consistent row height everywhere */
    .excel-grid-table tbody td[b-gr9qhwsxem] {
        height: var(--excel-row-h);
    }

/* Sticky */
.excel-sticky-top[b-gr9qhwsxem] {
    position: sticky;
    top: 0;
    z-index: 3;
}

.excel-sticky-left[b-gr9qhwsxem] {
    position: sticky;
    left: 0;
    z-index: 2;
}

    .excel-sticky-left.excel-sticky-top[b-gr9qhwsxem] {
        z-index: 4;
    }

/* Columns */
.excel-col-textid[b-gr9qhwsxem] {
    width: var(--excel-left-col-min);
    min-width: var(--excel-left-col-min);
    max-width: var(--excel-left-col-max);
    background: #ffffff;
    overflow: hidden;
}

.excel-col-parameter[b-gr9qhwsxem] {
    width: var(--excel-col-w);
    min-width: var(--excel-col-w);
    max-width: var(--excel-col-w);
    text-align: center;
    overflow: hidden;
}

/* Data cells */
.excel-cell[b-gr9qhwsxem] {
    width: var(--excel-col-w);
    min-width: var(--excel-col-w);
    max-width: var(--excel-col-w);
    text-align: center;
    padding: 0.15rem 0.2rem;
    height: var(--excel-row-h);
    box-sizing: border-box;
}

/* Light gridlines in body (main + detail rows) */
.excel-grid-table tbody td.excel-cell[b-gr9qhwsxem] {
    border-bottom: 1px solid #e9ecef;
}

    .excel-grid-table tbody td.excel-cell + td.excel-cell[b-gr9qhwsxem] {
        border-left: 1px solid #f1f3f5;
    }

/* Header styling */
.excel-grid-table thead th[b-gr9qhwsxem] {
    font-weight: 600;
    color: #369318;
    background: #f8f9fa;
    border-bottom: 2px solid #dee2e6;
    padding: 0.35rem 0.35rem;
}

.excel-colhead[b-gr9qhwsxem] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: center;
}

.excel-colhead-resizable[b-gr9qhwsxem] {
    padding-right: 0.45rem;
}

.excel-colhead-name[b-gr9qhwsxem] {
    font-weight: 700;
    color: #369318;
    line-height: 1.1;
    white-space: nowrap;
    font-size: 0.85rem;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.excel-col-resizer[b-gr9qhwsxem] {
    position: absolute;
    top: 0;
    right: -4px;
    width: 8px;
    height: 100%;
    cursor: col-resize;
    user-select: none;
    touch-action: none;
    z-index: 7;
}

    .excel-col-resizer[b-gr9qhwsxem]::after {
        content: "";
        position: absolute;
        top: 0.35rem;
        bottom: 0.35rem;
        left: 3px;
        width: 2px;
        border-radius: 2px;
        background: #cfd8dc;
    }

    .excel-col-resizer:hover[b-gr9qhwsxem]::after,
    .excel-col-resizing .excel-col-resizer[b-gr9qhwsxem]::after {
        background: #369318;
        width: 3px;
    }


.excel-grid-table thead th.excel-col-textid[b-gr9qhwsxem] {
    border-right: 1px solid #dee2e6;
}

.excel-grid-table tbody td.excel-col-textid[b-gr9qhwsxem] {
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.excel-sticky-left.excel-col-textid[b-gr9qhwsxem] {
    border-right: 1px solid #dee2e6;
}

/* Row header */
.excel-rowhead-cell[b-gr9qhwsxem] {
    padding-left: 0.75rem;
    padding-right: 0.5rem;
    cursor: pointer;
    user-select: none;
    height: var(--excel-row-h);
}

.excel-rowhead[b-gr9qhwsxem] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.excel-row-exclude-btn[b-gr9qhwsxem] {
    border: 1px solid #ced4da;
    background: #ffffff;
    color: #6c757d;
    width: 1.35rem;
    height: 1.35rem;
    line-height: 1.1rem;
    text-align: center;
    border-radius: 0.25rem;
    font-size: 0.8rem;
    padding: 0;
    text-decoration: none;
}

    .excel-row-exclude-btn:hover[b-gr9qhwsxem] {
        background: #f8f9fa;
        color: #495057;
        text-decoration: none;
    }

.excel-rowhead-id[b-gr9qhwsxem] {
    color: #369318;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hover + active row feel */
.excel-data-row:hover td[b-gr9qhwsxem] {
    background: #f8f9fa;
}

    .excel-data-row:hover td.excel-sticky-left[b-gr9qhwsxem] {
        background: #f8f9fa;
    }

/* Expanded row highlight */
.excel-row-expanded td[b-gr9qhwsxem] {
    background: #f1f3f5;
}

    .excel-row-expanded td.excel-sticky-left[b-gr9qhwsxem] {
        background: #f1f3f5;
    }

        .excel-row-expanded td.excel-sticky-left.excel-col-textid[b-gr9qhwsxem] {
            border-left: 3px solid #369318;
        }

.excel-row-expanded:hover td[b-gr9qhwsxem] {
    background: #eef1f4;
}

.excel-row-excluded td[b-gr9qhwsxem] {
    color: #5c6770;
    background: #f3f5f7;
}

.excel-row-excluded td.excel-sticky-left[b-gr9qhwsxem] {
    background: #eef2f5;
}

.excel-row-excluded .excel-rowhead-id[b-gr9qhwsxem],
.excel-row-excluded td .excel-cell-empty[b-gr9qhwsxem] {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #7c8894;
}

/* Inputs */
.excel-input[b-gr9qhwsxem] {
    width: 100%;
    max-width: min(170px, calc(var(--excel-col-w) - 18px));
    font-size: 0.85rem;
    text-align: center;
    font-variant-numeric: tabular-nums;
    border: 1px solid #dee2e6;
    border-radius: 0.3rem;
    background: #ffffff;
    padding: 0.15rem 0.25rem;
    height: calc(var(--excel-row-h) - 8px);
    box-sizing: border-box;
    display: block;
    margin: 0 auto;
}

    .excel-input:focus[b-gr9qhwsxem] {
        outline: none;
        border-color: #369318;
        box-shadow: 0 0 0 0.15rem rgba(54, 147, 24, 0.20);
    }

/* Selects - unified look for ALL dropdowns (main, detail, left menu) */
.excel-select[b-gr9qhwsxem] {
    width: 100%;
    max-width: min(170px, calc(var(--excel-col-w) - 18px));
    font-size: 0.85rem;
    border: 1px solid #dee2e6;
    border-radius: 0.3rem;
    background: #ffffff;
    padding: 0.15rem 0.25rem;
    height: calc(var(--excel-row-h) - 8px);
    appearance: auto;
    box-sizing: border-box;
    display: block; /* centers nicely in table cells */
    margin: 0 auto; /* centers nicely in table cells */
}

    .excel-select:focus[b-gr9qhwsxem] {
        outline: none;
        border-color: #369318;
        box-shadow: 0 0 0 0.15rem rgba(54, 147, 24, 0.20);
    }

.excel-cell-empty[b-gr9qhwsxem] {
    color: #adb5bd;
}

/* Fullscreen mode */
.excel-grid-fullscreen[b-gr9qhwsxem] {
    position: fixed;
    inset: 0;
    z-index: 1055;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.15);
}

    .excel-grid-fullscreen .excel-grid-toolbar[b-gr9qhwsxem] {
        border-bottom: 1px solid #dee2e6;
    }

    .excel-grid-fullscreen .excel-grid-scroll[b-gr9qhwsxem] {
        max-height: none;
        flex: 1 1 auto;
    }

/* Group caps */
.excel-row-group-start td[b-gr9qhwsxem] {
    border-top: 2px solid #dee2e6;
}

.excel-grid-table tbody tr.excel-row-group-end > td[b-gr9qhwsxem] {
    border-bottom: 2px solid #dee2e6 !important;
}

/* Detail row */
.excel-detail-row td[b-gr9qhwsxem] {
    background: #ffffff;
}

/* This is the sticky left cell that spans the detail rows */
.excel-detail-leftcell[b-gr9qhwsxem] {
    background: #fbfcfd;
    z-index: 3;
    padding: 0;
    height: auto;
    border-bottom: 1px solid #e9ecef;
}

/* Left menu inside the rowspan cell */
.excel-detail-leftmenu[b-gr9qhwsxem] {
    display: flex;
    flex-direction: column;
}

/* Each left label/control row MUST be exactly one row height */
.excel-detail-samplerow[b-gr9qhwsxem] {
    height: var(--excel-row-h);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0.5rem;
    font-weight: 800;
    color: #369318;
    font-size: 0.85rem;
    background: #fbfcfd;
    border-bottom: 1px solid #e9ecef;
    box-sizing: border-box;
}

    .excel-detail-samplerow.has-control[b-gr9qhwsxem] {
        justify-content: space-between;
        gap: 0.6rem;
        max-width: var(--excel-left-col-max);
    }

.excel-detail-samplerow-label[b-gr9qhwsxem] {
    line-height: 1.1;
    white-space: nowrap;
}

.excel-number-input[b-gr9qhwsxem] {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
}

.excel-numeric-cell[b-gr9qhwsxem] {
    font-variant-numeric: tabular-nums;
}

.excel-detail-action[b-gr9qhwsxem] {
    height: calc(var(--excel-row-h) - 8px);
    padding: 0.1rem 0.45rem;
    border-radius: 6px;
    font-size: 0.8rem;
    line-height: 1.1;
}

.excel-detail-samplerow-control[b-gr9qhwsxem] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 100px; /*I want a fixed size for this*/
    max-width: 100px;
}

/* Detail cells */
.excel-detail-cell[b-gr9qhwsxem] {
    background: #ffffff;
    font-size: 0.85rem;
    line-height: 1.2;
    height: var(--excel-row-h);
}

.excel-hm134-control-row td[b-gr9qhwsxem] {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.excel-hm134-control-left[b-gr9qhwsxem] {
    padding: 0.25rem 0.5rem;
    background: #f8f9fa;
    z-index: 3;
}

.excel-hm134-control-title[b-gr9qhwsxem] {
    color: #369318;
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
}

.excel-hm134-control-cell[b-gr9qhwsxem] {
    padding: 0.25rem 0.75rem;
    background: #f8f9fa;
}

.excel-hm134-controls[b-gr9qhwsxem] {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    min-height: calc(var(--excel-row-h) - 8px);
    white-space: nowrap;
}

.excel-hm134-chromatogram[b-gr9qhwsxem] {
    flex: 0 0 auto;
}

.excel-hm134-label[b-gr9qhwsxem] {
    margin: 0;
    color: #6c757d;
    font-size: 0.85rem;
}

.excel-hm134-phrase-select[b-gr9qhwsxem] {
    width: 190px;
    max-width: 190px;
    margin: 0;
}

.excel-hm134-phrase-badges[b-gr9qhwsxem] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.excel-hm134-phrase-badge[b-gr9qhwsxem] {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border: 0;
    border-radius: 8px;
    background: #6c757d;
    color: #ffffff;
    padding: 0.18rem 0.55rem;
    font-size: 0.82rem;
    line-height: 1.2;
}

.excel-hm134-sampledata[b-gr9qhwsxem] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.25rem;
    flex: 1 1 auto;
    min-width: 0;
    color: #343a40;
    font-size: 0.85rem;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gridv2-empty[b-gr9qhwsxem] {
    margin: 2rem;
    padding: 2.5rem 2rem;
    border: 1px dashed #d0d7de;
    border-radius: 10px;
    background: #f8fafb;
    text-align: center;
}

.gridv2-empty-icon[b-gr9qhwsxem] {
    font-size: 2rem;
    color: #369318;
    margin-bottom: 0.75rem;
}

.gridv2-empty-title[b-gr9qhwsxem] {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.gridv2-empty-text[b-gr9qhwsxem] {
    color: #6c757d;
    font-size: 0.9rem;
}
/* /Components/FilteredTableComponents/InlineLoader.razor.rz.scp.css */
.inline-loader[b-azi33hua8k] {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
}

.inline-loader-center[b-azi33hua8k] {
    width: 100%;
    justify-content: center;
}

/* ===== Dots loader (matches your existing markup) ===== */
.dots-progress[b-azi33hua8k] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

.progress-dot[b-azi33hua8k] {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background-color: #369318;
    opacity: 0.25;
    animation: dotPulse-b-azi33hua8k 1.1s ease-in-out infinite;
}

    .progress-dot:nth-child(1)[b-azi33hua8k] {
        animation-delay: 0s;
    }

    .progress-dot:nth-child(2)[b-azi33hua8k] {
        animation-delay: 0.1s;
    }

    .progress-dot:nth-child(3)[b-azi33hua8k] {
        animation-delay: 0.2s;
    }

    .progress-dot:nth-child(4)[b-azi33hua8k] {
        animation-delay: 0.3s;
    }

    .progress-dot:nth-child(5)[b-azi33hua8k] {
        animation-delay: 0.4s;
    }

@keyframes dotPulse-b-azi33hua8k {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.25;
    }

    50% {
        transform: translateY(-3px);
        opacity: 1;
    }
}

/* ===== Optional spinner variant ===== */
.spinner[b-azi33hua8k] {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 5px solid rgba(0,0,0,0.12);
    border-top-color: #369318;
    animation: spin-b-azi33hua8k 0.9s linear infinite;
}

@keyframes spin-b-azi33hua8k {
    to {
        transform: rotate(360deg);
    }
}

.loader-text[b-azi33hua8k] {
    font-size: 1rem;
    color: #369318;
    font-weight: 500;
    text-align: center;
}
/* /Components/FormHeader.razor.rz.scp.css */
/* Custom toggle styling */
.custom-toggle .form-check-input:checked[b-d24pac9ipx] {
    background-color: #369318;
    border-color: #369318;
}

.custom-toggle .form-check-label[b-d24pac9ipx] {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
    gap: 0.5rem;
    padding-left: 0.5rem;
    user-select: none;
}

.toggle-icon[b-d24pac9ipx] {
    color: #369318;
    font-size: 1.15rem;
    line-height: 1;
    display: flex;
    align-items: center;
}


.startup-loading-panel[b-d24pac9ipx] {
    min-height: 10rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
}

.startup-loading-help[b-d24pac9ipx] {
    color: #6c757d;
    font-size: 0.95rem;
}
/* /Pages/Upload.razor.rz.scp.css */

.title-bar[b-cdqsj25sep] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
}

    .title-bar h1[b-cdqsj25sep] {
        flex-grow: 1;
        margin: 0;
    }

    .title-bar .logo[b-cdqsj25sep] {
        height: 50px; /* Adjust as needed */
        margin-left: auto;
    }

.link-primary[b-cdqsj25sep] {
    text-decoration: none;
    color: rgb(0,123,255);
}
