/* /Components/TicketCard.razor.rz.scp.css */
/* TicketCard.razor.css */

.ticket-card[b-jukcuqt4zn] {
    display: grid;
    grid-template-columns: 90px 50px 1fr;
    gap: 6px;
    padding: 6px 12px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    margin-bottom: 6px;
}

.cell-left[b-jukcuqt4zn],
.cell-right[b-jukcuqt4zn] {
    cursor: pointer;
}

    .cell-left:hover[b-jukcuqt4zn],
    .cell-right:hover[b-jukcuqt4zn] {
        opacity: 0.85;
    }

/* CELL 2 — edit action, distinct hover to signal different behaviour */
.cell-icon[b-jukcuqt4zn] {
    cursor: pointer;
}

    .cell-icon:hover img[b-jukcuqt4zn] {
        opacity: 1;
        transform: scale(1.12);
        transition: transform 0.15s ease;
    }

/* Locked styling — light orange indicates ticket being edited by another client */
.ticket-card.locked[b-jukcuqt4zn] {
    background: #fff3e0;
    border-left: 6px solid #fb8c00;
}

/* CELL 1 */
.cell-left[b-jukcuqt4zn] {
    font-size: 0.85rem;
    line-height: 1.0rem;
}

/* CELL 2 */
.cell-icon img[b-jukcuqt4zn] {
    width: 40px;
    height: 40px;
    object-fit: contain;
    opacity: 0.9;
}

/* CELL 3 */
.cell-right .pay[b-jukcuqt4zn] {
    font-weight: 600;
    margin-bottom: 2px;
}

.cell-right .item[b-jukcuqt4zn] {
    font-size: 0.9rem;
    line-height: 1.1rem;
}

.cell-right .more[b-jukcuqt4zn] {
    font-size: 0.85rem;
    color: #666;
    margin-top: 2px;
}

/* MOBILE */
@media (max-width: 480px) {
    .ticket-card[b-jukcuqt4zn] {
        grid-template-columns: 70px 40px 1fr;
        padding: 5px 8px;
    }

    .cell-icon img[b-jukcuqt4zn] {
        width: 32px;
        height: 32px;
    }
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-ud5vxwglvv] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ud5vxwglvv] {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

article[b-ud5vxwglvv] {
    flex: 1;
    min-height: 0;
    overflow: auto;
}

.sidebar[b-ud5vxwglvv] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-ud5vxwglvv] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 2px !important;
    padding-right: 4px !important;
}

.top-row-context[b-ud5vxwglvv] {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    overflow-x: auto;
    padding-right: 0.5rem;
}

/* Filter buttons pushed by pages into the top bar */
[b-ud5vxwglvv] .filter-btn {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid #bbb;
    background: #fff;
    color: #555;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s;
    user-select: none;
}

    [b-ud5vxwglvv] .filter-btn:hover {
        border-color: #888;
        color: #222;
    }

    /* Active = visible / included in results */
    [b-ud5vxwglvv] .filter-btn.active {
        background: #13131a;
        border-color: #13131a;
        color: #f0ece3;
    }

    /* Inactive = filtered out (dimmed / struck) */
    [b-ud5vxwglvv] .filter-btn.inactive {
        background: #f0f0f0;
        border-color: #ccc;
        color: #aaa;
        text-decoration: line-through;
    }

.topbar-greeting[b-ud5vxwglvv] {
    font-size: 13px;
    color: #555;
    white-space: nowrap;
    opacity: 0.85;
}

.settings-cog[b-ud5vxwglvv] {
    font-size: 18px;
    color: #888;
    text-decoration: none;
    line-height: 1;
    display: flex;
    align-items: center;
    padding: 2px 4px;
    border-radius: 6px;
    transition: color 0.15s, background 0.15s;
    margin-left: 2px;
}

    .settings-cog:hover[b-ud5vxwglvv] {
        color: #c8a96e;
        background: rgba(200,169,110,0.10);
    }

.logout-link[b-ud5vxwglvv] {
    white-space: nowrap;
    margin-left: 0.5rem;
    text-decoration: none;
    color: #555;
    font-size: 13px;
}

.top-row[b-ud5vxwglvv]  a, .top-row[b-ud5vxwglvv]  .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
    text-decoration: none;
}

    .top-row[b-ud5vxwglvv]  a:hover, .top-row[b-ud5vxwglvv]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-ud5vxwglvv]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-ud5vxwglvv] {
        justify-content: space-between;
    }

        .top-row[b-ud5vxwglvv]  a, .top-row[b-ud5vxwglvv]  .btn-link {
            margin-left: 0;
        }
    /* Remove Bootstrap px-4 on mobile — full-bleed pages (NewOrder) manage
       their own padding; other pages pad their own content containers. */
    article[b-ud5vxwglvv] {
        padding: 0 !important;
        margin: 0 !important;
    }
}

@media (min-width: 641px) {
    .page[b-ud5vxwglvv] {
        flex-direction: row;
    }

    .sidebar[b-ud5vxwglvv] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .top-row[b-ud5vxwglvv] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

        .top-row.auth[b-ud5vxwglvv]  a:first-child {
            flex: 1;
            text-align: right;
            width: 0;
        }

    .top-row[b-ud5vxwglvv], article[b-ud5vxwglvv] {
        padding: 0 !important;
        margin: 0 !important;
    }
}

.sidebar-context[b-ud5vxwglvv] {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    background: #13131a;
    padding: 8px 6px;
    gap: 4px;
    min-height: 0;
}

/* On mobile, hide the sidebar when it contains page-specific content
   (e.g. category list on NewOrder). Mobile uses the bottom bar instead.
   Using max-width: 640px (no decimal) for broadest device compatibility. */
@media (max-width: 640px) {
    .sidebar-page-context[b-ud5vxwglvv] {
        display: none !important;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-qgjiltbfm9] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-qgjiltbfm9] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-qgjiltbfm9] {
    font-size: 1.1rem;
}

.bi[b-qgjiltbfm9] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-qgjiltbfm9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-qgjiltbfm9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-qgjiltbfm9] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-qgjiltbfm9] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-qgjiltbfm9] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-qgjiltbfm9] {
        padding-bottom: 1rem;
    }

    .nav-item[b-qgjiltbfm9]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

        .nav-item[b-qgjiltbfm9]  a.active {
            background-color: rgba(255,255,255,0.37);
            color: white;
        }

        .nav-item[b-qgjiltbfm9]  a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }

@media (min-width: 641px) {
    .navbar-toggler[b-qgjiltbfm9] {
        display: none;
    }

    .collapse[b-qgjiltbfm9] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-qgjiltbfm9] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

/* EPOS status dot � sized to match a lowercase 'e' (~0.6em) */
.epos-dot[b-qgjiltbfm9] {
    display: inline-block;
    width: 0.55em;
    height: 0.55em;
    border-radius: 50%;
    margin-left: 0.4em;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.dot-up[b-qgjiltbfm9] {
    background-color: #4caf50;
}

.dot-down[b-qgjiltbfm9] {
    background-color: #f44336;
}
/* /Pages/DayTickets.razor.rz.scp.css */
/* DayTickets.razor.css — page-specific styles only.
   Shared styles (empty-state, loading-msg, error-banner, filter-bar,
   switch controls, sort-select, back-btn) live in sgpos-common.css */

.tickets-list[b-j2jwujb9qi] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 0;
}

.no-tickets[b-j2jwujb9qi] {
    color: #555;
    font-size: 14px;
    padding: 20px 0;
    text-align: center;
}

/* Date label shown in the top bar alongside the filter switches */
.day-label[b-j2jwujb9qi] {
    font-size: 12px;
    letter-spacing: 1px;
    color: #c8a96e;
    background: rgba(200,169,110,0.12);
    border: 1px solid rgba(200,169,110,0.3);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}
/* /Pages/ItemsReorg.razor.rz.scp.css */
/* ItemsReorg.razor.css */

.reorg-page[b-mrmahct5i5] {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 56px);
    background: #1b1b22;
    font-family: 'Segoe UI', sans-serif;
}

/* ── Header ── */

.reorg-header[b-mrmahct5i5] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #0d0d12;
    border-bottom: 1px solid #2a2a35;
    flex-shrink: 0;
}

.reorg-back-btn[b-mrmahct5i5] {
    background: none;
    border: 1px solid #333;
    color: #aaa;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    transition: border-color 0.15s, color 0.15s;
}

    .reorg-back-btn:hover[b-mrmahct5i5] {
        border-color: #c8a96e;
        color: #c8a96e;
    }

.reorg-title[b-mrmahct5i5] {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #f0ece3;
}

/* ── Category chip bars ── */

.reorg-cat-bar[b-mrmahct5i5],
.reorg-subcat-bar[b-mrmahct5i5] {
    display: flex;
    gap: 8px;
    padding: 10px 16px;
    overflow-x: auto;
    flex-shrink: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .reorg-cat-bar[b-mrmahct5i5]::-webkit-scrollbar,
    .reorg-subcat-bar[b-mrmahct5i5]::-webkit-scrollbar {
        display: none;
    }

.reorg-subcat-bar[b-mrmahct5i5] {
    padding-top: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #2a2a35;
}

.cat-chip[b-mrmahct5i5],
.subcat-chip[b-mrmahct5i5] {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #333;
    background: #111116;
    color: #aaa;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s;
}

    .cat-chip:hover[b-mrmahct5i5],
    .subcat-chip:hover[b-mrmahct5i5] {
        border-color: #c8a96e;
        color: #c8a96e;
    }

    .cat-chip.active[b-mrmahct5i5] {
        border-color: #c8a96e;
        background: rgba(200,169,110,0.12);
        color: #c8a96e;
        font-weight: 600;
    }

.subcat-chip[b-mrmahct5i5] {
    font-size: 12px;
    padding: 6px 12px;
}

    .subcat-chip.active[b-mrmahct5i5] {
        border-color: #6ab0f5;
        background: rgba(106,176,245,0.1);
        color: #6ab0f5;
        font-weight: 600;
    }

/* ── Hint / empty states ── */

.reorg-empty[b-mrmahct5i5],
.reorg-hint[b-mrmahct5i5] {
    padding: 32px 20px;
    text-align: center;
    color: #555;
    font-size: 14px;
}

/* ── Item grid ── */

.reorg-list-wrapper[b-mrmahct5i5] {
    flex: 1;
    overflow-y: auto;
    background: #12121a;
}

.items-grid[b-mrmahct5i5] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 7px;
    padding: 10px;
}

.menu-item[b-mrmahct5i5] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 11px 12px;
    background: #1a1a24;
    border: 1px solid #26262e;
    border-radius: 7px;
    color: #e0dcd4;
    cursor: grab;
    text-align: left;
    user-select: none;
    touch-action: auto;
}

.drag-handle[b-mrmahct5i5] {
    align-self: flex-end;
    font-size: 1.1rem;
    line-height: 1;
    color: #6b6b7a;
    cursor: grab;
    touch-action: none;
    padding: 2px 4px;
    border-radius: 4px;
    margin-bottom: -4px;
}

    .drag-handle:active[b-mrmahct5i5] {
        cursor: grabbing;
        color: #c8a96e;
    }

    .menu-item:active[b-mrmahct5i5] {
        cursor: grabbing;
    }

.item-name[b-mrmahct5i5] {
    font-size: 12px;
    line-height: 1.3;
}

.item-price[b-mrmahct5i5] {
    font-size: 13px;
    color: #c8a96e;
}

/* SortableJS states */
.menu-item.drag-ghost[b-mrmahct5i5] {
    opacity: 0.4;
}

.menu-item.drag-chosen[b-mrmahct5i5] {
    border-color: #c8a96e;
    background: rgba(200,169,110,0.12);
    box-shadow: 0 3px 12px rgba(0,0,0,0.35);
}

/* ── Footer ── */

.reorg-footer[b-mrmahct5i5] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-top: 1px solid #2a2a35;
    background: #0d0d12;
    flex-shrink: 0;
}

.reorg-btn[b-mrmahct5i5] {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid;
    transition: all 0.15s;
}

.reorg-btn-reset[b-mrmahct5i5] {
    border-color: #555;
    background: transparent;
    color: #aaa;
}

    .reorg-btn-reset:hover[b-mrmahct5i5] {
        border-color: #e05c5c;
        color: #e05c5c;
        background: rgba(224,92,92,0.08);
    }

.reorg-saved-msg[b-mrmahct5i5] {
    font-size: 12px;
    color: #7ed87e;
    opacity: 0;
    transition: opacity 0.3s;
}

    .reorg-saved-msg.visible[b-mrmahct5i5] {
        opacity: 1;
    }
/* /Pages/NewOrder.razor.rz.scp.css */
/* ── Adding-to banner ───────────────────────────────────── */
.adding-to-banner[b-ut0n6kfiwm] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    background: rgba(200,169,110,0.12);
    border-bottom: 1px solid rgba(200,169,110,0.3);
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
    min-height: 36px;
}

    .adding-to-banner:hover[b-ut0n6kfiwm] {
        background: rgba(200,169,110,0.18);
    }

.adding-to-label[b-ut0n6kfiwm] {
    font-size: 10px;
    letter-spacing: 2px;
    color: #c8a96e;
    text-transform: uppercase;
    flex-shrink: 0;
    opacity: 0.8;
}

.adding-to-name[b-ut0n6kfiwm] {
    font-size: 14px;
    color: #1b1b22;
    font-weight: 500;
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.adding-to-price[b-ut0n6kfiwm] {
    font-size: 13px;
    color: #c8a96e;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

.adding-to-children[b-ut0n6kfiwm] {
    font-size: 11px;
    background: rgba(200,169,110,0.2);
    color: #c8a96e;
    border-radius: 10px;
    padding: 1px 8px;
    flex-shrink: 0;
}

.adding-to-clear[b-ut0n6kfiwm] {
    font-size: 11px;
    color: #888;
    flex-shrink: 0;
    margin-left: 4px;
    opacity: 0.6;
}

.adding-to-banner:hover .adding-to-clear[b-ut0n6kfiwm] {
    opacity: 1;
    color: #e05c5c;
}

/* ── Base layout ─────────────────────────────────────────── */
.order-page-wrapper[b-ut0n6kfiwm] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 56px);
    overflow: hidden;
}

.order-page[b-ut0n6kfiwm] {
    display: flex;
    flex: 1;
    min-height: 0;
    background: #1b1b22;
    color: #f0ece3;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

/* ── Order panel ─────────────────────────────────────────── */
.order-panel[b-ut0n6kfiwm] {
    display: flex;
    flex-direction: column;
    background: #111116;
    border-right: 1px solid #2a2a35;
    width: 100%;
    flex-shrink: 0;
}

@media (min-width: 641px) {
    .order-panel[b-ut0n6kfiwm] {
        width: 420px;
    }
}

.order-header[b-ut0n6kfiwm] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px 8px;
    border-bottom: 1px solid #2a2a35;
    flex-wrap: nowrap;
}

.table-badge[b-ut0n6kfiwm] {
    font-size: 10px;
    letter-spacing: 2px;
    color: #c8a96e;
    background: rgba(200,169,110,0.12);
    border: 1px solid rgba(200,169,110,0.3);
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.clickable-badge[b-ut0n6kfiwm] {
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
}

    .clickable-badge:hover[b-ut0n6kfiwm] {
        background: rgba(200,169,110,0.25);
        border-color: #c8a96e;
    }

.order-title[b-ut0n6kfiwm] {
    flex: 1;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #f0ece3;
}

.clickable-title[b-ut0n6kfiwm] {
    cursor: pointer;
    user-select: none;
    transition: color 0.15s;
}

    .clickable-title:hover[b-ut0n6kfiwm] {
        color: #c8a96e;
    }

/* ── Instr button ────────────────────────────────────────── */
.instr-btn[b-ut0n6kfiwm] {
    flex-shrink: 0;
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid #555;
    background: #1e1e2e;
    color: #ccc;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.15s;
}

    .instr-btn:hover[b-ut0n6kfiwm] {
        border-color: #c8a96e;
        color: #c8a96e;
        background: rgba(200,169,110,0.08);
    }

/* Undo/Redo buttons — compact, sit between Order title and Deal */
.undo-redo-btn[b-ut0n6kfiwm] {
    padding: 5px 9px;
    font-size: 15px;
    min-width: 30px;
}

    .undo-redo-btn:disabled[b-ut0n6kfiwm] {
        opacity: 0.2;
        cursor: not-allowed;
        pointer-events: none;
    }

/* Deal mode active — bright gold fill to make it unmissable */
.deal-btn-active[b-ut0n6kfiwm] {
    border-color: #c8a96e !important;
    background: #c8a96e !important;
    color: #111 !important;
    animation: deal-pulse-b-ut0n6kfiwm 1.5s ease-in-out infinite;
}

@keyframes deal-pulse-b-ut0n6kfiwm {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.75;
    }
}

/* ── Order items ─────────────────────────────────────────── */
.order-items[b-ut0n6kfiwm] {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 4px;
    background: #060425;
    border-top: 1px solid #2a2a35;
}

    .order-items[b-ut0n6kfiwm]::-webkit-scrollbar {
        width: 4px;
    }

    .order-items[b-ut0n6kfiwm]::-webkit-scrollbar-thumb {
        background: #333;
        border-radius: 4px;
    }

.order-empty[b-ut0n6kfiwm] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 16px;
    color: #555;
    gap: 8px;
    font-size: 13px;
}

/* ── Base order line ─────────────────────────────────────── */
.order-line[b-ut0n6kfiwm] {
    padding: 2px 0;
    border-bottom: 1px solid #1e1e28;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    gap: 2px;
    min-height: 44px;
}

    .order-line:hover[b-ut0n6kfiwm] {
        background: rgba(255,255,255,0.03);
    }

    .order-line.selected[b-ut0n6kfiwm] {
        background: rgba(200,169,110,0.20);
        border-left: 3px solid #c8a96e;
        padding-left: 13px;
        box-shadow: inset 0 0 0 1px rgba(200,169,110,0.15);
    }

/* ── Child item rows ─────────────────────────────────────── */
.child-line[b-ut0n6kfiwm] {
    padding-left: 8px;
    background: rgba(255,255,255,0.018);
}

    .child-line.selected[b-ut0n6kfiwm] {
        background: rgba(200,169,110,0.18);
        border-left: 3px solid #c8a96e;
        padding-left: 5px;
        box-shadow: inset 0 0 0 1px rgba(200,169,110,0.14);
    }

    .child-line .line-name[b-ut0n6kfiwm] {
        color: #aaa;
    }

/* ── SVG angle-arrow ─────────────────────────────────────── */
.child-arrow[b-ut0n6kfiwm] {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    width: 20px;
    margin-left: 16px;
    margin-right: 4px;
    color: #3e3e50;
}

    .child-arrow svg[b-ut0n6kfiwm] {
        width: 12px;
        height: 14px;
    }

.child-line.selected .child-arrow[b-ut0n6kfiwm] {
    color: #c8a96e;
}

/* ── Line info / controls layout ─────────────────────────── */
.line-info[b-ut0n6kfiwm] {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
    gap: 0;
}

.line-name[b-ut0n6kfiwm] {
    font-size: 13px;
    color: #e0dcd4;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.line-price[b-ut0n6kfiwm] {
    font-size: 13px;
    color: #c8a96e;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    margin-left: 8px;
}

.line-controls[b-ut0n6kfiwm] {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: 6px;
}

.qty-btn[b-ut0n6kfiwm] {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #333;
    background: #1e1e28;
    color: #aaa;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.15s;
}

    .qty-btn:hover[b-ut0n6kfiwm] {
        border-color: #c8a96e;
        color: #c8a96e;
    }

    /* Minus button turns red when qty is 0 — next press deletes */
    .qty-btn.qty-delete[b-ut0n6kfiwm] {
        border-color: #e05c5c;
        color: #e05c5c;
    }

        .qty-btn.qty-delete:hover[b-ut0n6kfiwm] {
            border-color: #ff4040;
            color: #ff4040;
            background: rgba(224,92,92,0.12);
        }

.qty-val[b-ut0n6kfiwm] {
    font-size: 13px;
    min-width: 18px;
    text-align: center;
    color: #f0ece3;
}

/* ── Reorder cells ───────────────────────────────────────── */
.reorder-cell[b-ut0n6kfiwm] {
    flex-shrink: 0;
    width: 36px;
    height: 100%;
    min-height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    opacity: 0.45;
    transition: opacity 0.15s, background 0.15s;
    border-radius: 4px;
}

    .reorder-cell:hover[b-ut0n6kfiwm], .reorder-cell:active[b-ut0n6kfiwm] {
        opacity: 1;
        background: rgba(255,255,255,0.06);
    }

    .reorder-cell.up[b-ut0n6kfiwm] {
        color: #4caf50;
    }

    .reorder-cell.down[b-ut0n6kfiwm] {
        color: #fb8c00;
    }

/* ── TopBar buttons ──────────────────────────────────────── */
.topbar-btn[b-ut0n6kfiwm] {
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}

.topbar-cancel[b-ut0n6kfiwm] {
    background: transparent;
    border: 1px solid #888;
    color: #ccc;
}

    .topbar-cancel:hover[b-ut0n6kfiwm] {
        border-color: #f0ece3;
        color: #f0ece3;
    }

.topbar-send[b-ut0n6kfiwm] {
    background: #c8a96e;
    border: none;
    color: #111;
}

    .topbar-send:hover:not([disabled])[b-ut0n6kfiwm] {
        background: #dbbf84;
    }

    .topbar-send[disabled][b-ut0n6kfiwm] {
        opacity: 0.35;
        cursor: not-allowed;
    }

/* ── Desktop menu panel ──────────────────────────────────── */
.menu-panel[b-ut0n6kfiwm] {
    flex: 1;
    overflow-y: auto;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .menu-panel[b-ut0n6kfiwm]::-webkit-scrollbar {
        width: 4px;
    }

    .menu-panel[b-ut0n6kfiwm]::-webkit-scrollbar-thumb {
        background: #333;
        border-radius: 4px;
    }

.menu-loading[b-ut0n6kfiwm] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #555;
}

.category-block[b-ut0n6kfiwm] {
    border-radius: 9px;
    overflow: hidden;
    border: 1px solid #28282e;
    transition: border-color 0.2s;
}

    .category-block.active[b-ut0n6kfiwm] {
        border-color: #c8a96e;
    }

.category-tab[b-ut0n6kfiwm] {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    background: #161620;
    border: none;
    color: #c0bcb4;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

    .category-tab:hover[b-ut0n6kfiwm] {
        background: #1c1c28;
        color: #f0ece3;
    }

.category-block.active .category-tab[b-ut0n6kfiwm] {
    background: #1e1a12;
    color: #c8a96e;
}

.cat-name[b-ut0n6kfiwm] {
    flex: 1;
    font-size: 15px;
}

.cat-count[b-ut0n6kfiwm] {
    font-size: 11px;
    background: #2a2a36;
    color: #888;
    padding: 1px 7px;
    border-radius: 10px;
}

.category-block.active .cat-count[b-ut0n6kfiwm] {
    background: rgba(200,169,110,0.15);
    color: #c8a96e;
}

.cat-chevron[b-ut0n6kfiwm] {
    font-size: 10px;
    color: #555;
}

.category-block.active .cat-chevron[b-ut0n6kfiwm] {
    color: #c8a96e;
}

/* ── Item grid (desktop + drawer) ────────────────────────── */
.items-grid[b-ut0n6kfiwm], .drawer-grid[b-ut0n6kfiwm] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 7px;
    padding: 10px;
    background: #12121a;
}

.items-grid[b-ut0n6kfiwm] {
    animation: reveal-b-ut0n6kfiwm 0.18s ease-out both;
}

@keyframes reveal-b-ut0n6kfiwm {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item[b-ut0n6kfiwm] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 11px 12px;
    background: #1a1a24;
    border: 1px solid #26262e;
    border-radius: 7px;
    color: #e0dcd4;
    cursor: pointer;
    text-align: left;
    transition: all 0.15s;
}

    .menu-item:hover[b-ut0n6kfiwm] {
        background: #20202e;
        border-color: #c8a96e;
        transform: translateY(-1px);
        box-shadow: 0 3px 12px rgba(0,0,0,0.35);
    }

    .menu-item:active[b-ut0n6kfiwm] {
        transform: translateY(0);
    }

.item-name[b-ut0n6kfiwm] {
    font-size: 12px;
    line-height: 1.3;
}

.item-price[b-ut0n6kfiwm] {
    font-size: 13px;
    color: #c8a96e;
}

/* ── Sub-category bar ────────────────────────────────────── */
.subcat-bar[b-ut0n6kfiwm] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    min-height: 44px;
    overflow-x: auto;
    background: #0f0f18;
    border-bottom: 1px solid #2a2a35;
    scrollbar-width: none;
    flex-wrap: nowrap;
    flex-shrink: 0;
    -webkit-overflow-scrolling: touch;
}

    .subcat-bar[b-ut0n6kfiwm]::-webkit-scrollbar {
        display: none;
    }

.subcat-btn[b-ut0n6kfiwm] {
    flex-shrink: 0;
    padding: 6px 14px;
    height: 32px;
    line-height: 1;
    border-radius: 16px;
    border: 1px solid #444;
    background: #1a1a26;
    color: #ccc;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    transition: all 0.15s;
}

    .subcat-btn.active[b-ut0n6kfiwm], .subcat-btn:hover[b-ut0n6kfiwm] {
        background: rgba(200,169,110,0.18);
        border-color: #c8a96e;
        color: #c8a96e;
    }

/* ── Mobile category bar ─────────────────────────────────── */
.mobile-cat-bar[b-ut0n6kfiwm] {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 52px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    overflow-x: auto;
    background: #13131a;
    border-top: 1px solid #2a2a35;
    z-index: 100;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .mobile-cat-bar[b-ut0n6kfiwm]::-webkit-scrollbar {
        display: none;
    }

.mobile-cat-btn[b-ut0n6kfiwm] {
    flex-shrink: 0;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid #333;
    background: #1e1e28;
    color: #aaa;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s;
}

    .mobile-cat-btn.active[b-ut0n6kfiwm], .mobile-cat-btn:hover[b-ut0n6kfiwm] {
        background: #c8a96e;
        border-color: #c8a96e;
        color: #111;
    }

/* ── Mobile item drawer ──────────────────────────────────── */
.drawer-backdrop[b-ut0n6kfiwm] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 200;
}

.item-drawer[b-ut0n6kfiwm] {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 52px;
    max-height: 60vh;
    background: #13131a;
    border-top: 1px solid #c8a96e;
    border-radius: 14px 14px 0 0;
    z-index: 201;
    display: flex;
    flex-direction: column;
    animation: slideUp-b-ut0n6kfiwm 0.22s ease-out both;
}

@keyframes slideUp-b-ut0n6kfiwm {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.drawer-header[b-ut0n6kfiwm] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px 8px;
    border-bottom: 1px solid #2a2a35;
    flex-shrink: 0;
}

.drawer-title[b-ut0n6kfiwm] {
    font-size: 15px;
    font-weight: 600;
    color: #c8a96e;
    letter-spacing: 0.5px;
}

.drawer-close[b-ut0n6kfiwm] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #444;
    background: #1e1e28;
    color: #aaa;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

    .drawer-close:hover[b-ut0n6kfiwm] {
        border-color: #e05c5c;
        color: #e05c5c;
    }

.drawer-grid[b-ut0n6kfiwm] {
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
}

/* ── Desktop items panel ─────────────────────────────────── */
.desktop-items-panel[b-ut0n6kfiwm] {
    display: none;
}

@media (min-width: 641px) {
    .desktop-items-panel[b-ut0n6kfiwm] {
        display: flex;
        flex-direction: column;
        flex: 1;
        overflow-y: auto;
        background: #12121a;
        border-left: 1px solid #28282e;
    }

        .desktop-items-panel .items-grid[b-ut0n6kfiwm] {
            padding: 12px;
        }

    .mobile-only[b-ut0n6kfiwm] {
        display: none !important;
    }

    .order-panel[b-ut0n6kfiwm] {
        height: 100%;
    }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 640px) {
    .mobile-only[b-ut0n6kfiwm] {
        display: flex;
    }

    .order-page-wrapper[b-ut0n6kfiwm] {
        height: calc(100vh - 56px - 52px - 16px);
    }

    .order-panel[b-ut0n6kfiwm] {
        height: 100%;
    }

    .order-items[b-ut0n6kfiwm] {
        padding-bottom: 16px;
    }
}

/* ── Shared modal backdrop ───────────────────────────────── */
.modal-backdrop[b-ut0n6kfiwm] {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* ── Instruction modal ───────────────────────────────────── */
.instr-modal[b-ut0n6kfiwm] {
    background: #1e1e28;
    border: 1px solid #c8a96e;
    border-radius: 12px;
    padding: 20px;
    width: min(420px, 94vw);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.instr-modal-header[b-ut0n6kfiwm] {
    display: flex;
    align-items: center;
}

.instr-modal-context[b-ut0n6kfiwm] {
    font-size: 13px;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .instr-modal-context strong[b-ut0n6kfiwm] {
        color: #c8a96e;
        font-weight: 600;
    }

.instr-textarea[b-ut0n6kfiwm] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #13131a;
    color: #f0ece3;
    font-size: 14px;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.5;
    resize: vertical;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s;
}

    .instr-textarea:focus[b-ut0n6kfiwm] {
        border-color: #c8a96e;
    }

    .instr-textarea[b-ut0n6kfiwm]::placeholder {
        color: #555;
    }

.instr-char-count[b-ut0n6kfiwm] {
    font-size: 11px;
    color: #555;
    text-align: right;
    margin-top: -6px;
}

    .instr-char-count.warn[b-ut0n6kfiwm] {
        color: #e05c5c;
    }

.instr-modal-footer[b-ut0n6kfiwm] {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

    .instr-modal-footer .topbar-btn[b-ut0n6kfiwm] {
        min-width: 72px;
    }

/* ── Table picker modal ──────────────────────────────────── */
.table-picker-modal[b-ut0n6kfiwm] {
    background: #1e1e28;
    border: 1px solid #c8a96e;
    border-radius: 12px;
    padding: 20px;
    width: min(360px, 92vw);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.table-picker-header[b-ut0n6kfiwm] {
    font-size: 16px;
    font-weight: 600;
    color: #f0ece3;
    text-align: center;
    letter-spacing: 0.5px;
}

.table-picker-grid[b-ut0n6kfiwm] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.table-btn[b-ut0n6kfiwm] {
    padding: 10px 6px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #13131a;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: all 0.15s;
}

    .table-btn:hover[b-ut0n6kfiwm] {
        border-color: #c8a96e;
        color: #c8a96e;
        background: rgba(200,169,110,0.08);
    }

    .table-btn.active[b-ut0n6kfiwm] {
        border-color: #c8a96e;
        color: #111;
        background: #c8a96e;
    }

    .table-btn.special[b-ut0n6kfiwm] {
        grid-column: span 2;
        font-size: 13px;
        color: #aaa;
    }

.table-picker-custom[b-ut0n6kfiwm] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.table-input[b-ut0n6kfiwm] {
    flex: 1;
    padding: 9px 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #13131a;
    color: #f0ece3;
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s;
}

    .table-input:focus[b-ut0n6kfiwm] {
        border-color: #c8a96e;
    }

    .table-input[b-ut0n6kfiwm]::placeholder {
        color: #555;
    }

.table-btn-ok[b-ut0n6kfiwm] {
    padding: 9px 18px;
    border-radius: 8px;
    border: none;
    background: #c8a96e;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    white-space: nowrap;
}

    .table-btn-ok:hover:not([disabled])[b-ut0n6kfiwm] {
        background: #dbbf84;
    }

    .table-btn-ok[disabled][b-ut0n6kfiwm] {
        opacity: 0.35;
        cursor: not-allowed;
    }

.table-picker-footer[b-ut0n6kfiwm] {
    display: flex;
    justify-content: center;
}

/* ── Confirm modal ───────────────────────────────────── */
.confirm-modal[b-ut0n6kfiwm] {
    background: #1e1e28;
    border: 1px solid #c8a96e;
    border-radius: 12px;
    padding: 28px 32px;
    min-width: 300px;
    text-align: center;
}

    .confirm-modal h4[b-ut0n6kfiwm] {
        margin: 0 0 8px;
        font-size: 18px;
        color: #f0ece3;
    }

    .confirm-modal p[b-ut0n6kfiwm] {
        color: #aaa;
        font-size: 14px;
        margin-bottom: 20px;
    }

.confirm-btns[b-ut0n6kfiwm] {
    display: flex;
    gap: 10px;
    justify-content: center;
}

    .confirm-btns .topbar-btn[b-ut0n6kfiwm] {
        flex: 1;
        padding: 11px 14px;
    }

/* ── Sidebar category buttons ────────────────────────────── */
.sidebar-cat-btn[b-ut0n6kfiwm] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #28282e;
    background: #161620;
    color: #c0bcb4;
    cursor: pointer;
    text-align: left;
    font-size: 13px;
    transition: all 0.15s;
    gap: 6px;
}

    .sidebar-cat-btn:hover[b-ut0n6kfiwm] {
        background: #1c1c28;
        border-color: #444;
        color: #f0ece3;
    }

    .sidebar-cat-btn.active[b-ut0n6kfiwm] {
        background: #1e1a12;
        border-color: #c8a96e;
        color: #c8a96e;
    }

.sidebar-cat-name[b-ut0n6kfiwm] {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-cat-count[b-ut0n6kfiwm] {
    flex-shrink: 0;
    font-size: 11px;
    background: #2a2a36;
    color: #888;
    padding: 1px 6px;
    border-radius: 10px;
}

.sidebar-cat-btn.active .sidebar-cat-count[b-ut0n6kfiwm] {
    background: rgba(200,169,110,0.15);
    color: #c8a96e;
}

.sidebar-loading[b-ut0n6kfiwm] {
    color: #555;
    font-size: 13px;
    padding: 12px;
}

/* ── Add manual item modal ───────────────────────────────── */
.add-item-modal[b-ut0n6kfiwm] {
    background: #1e1e28;
    border: 1px solid #c8a96e;
    border-radius: 12px;
    padding: 20px;
    width: min(440px, 96vw);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.add-item-modal-header[b-ut0n6kfiwm] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.add-item-modal-title[b-ut0n6kfiwm] {
    font-size: 16px;
    font-weight: 600;
    color: #f0ece3;
    flex: 1;
    letter-spacing: 0.3px;
}

.add-item-deal-badge[b-ut0n6kfiwm] {
    font-size: 11px;
    font-weight: 600;
    background: #c8a96e;
    color: #111;
    padding: 2px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

.add-item-field[b-ut0n6kfiwm] {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.add-item-field-qty[b-ut0n6kfiwm] {
    flex: 0 0 72px;
}

.add-item-label[b-ut0n6kfiwm] {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.add-item-input[b-ut0n6kfiwm] {
    padding: 9px 11px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #13131a;
    color: #f0ece3;
    font-size: 14px;
    font-family: 'Segoe UI', sans-serif;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.15s;
}

    .add-item-input:focus[b-ut0n6kfiwm] {
        border-color: #c8a96e;
    }

    .add-item-input[b-ut0n6kfiwm]::placeholder {
        color: #555;
    }

    /* Override browser autofill yellow/white background */
    .add-item-input:-webkit-autofill[b-ut0n6kfiwm],
    .add-item-input:-webkit-autofill:hover[b-ut0n6kfiwm],
    .add-item-input:-webkit-autofill:focus[b-ut0n6kfiwm] {
        -webkit-box-shadow: 0 0 0px 1000px #13131a inset;
        -webkit-text-fill-color: #f0ece3;
        caret-color: #f0ece3;
    }

    /* Remove spinner arrows on number inputs */
    .add-item-input[type=number][b-ut0n6kfiwm]::-webkit-inner-spin-button,
    .add-item-input[type=number][b-ut0n6kfiwm]::-webkit-outer-spin-button {
        opacity: 0.4;
    }

.add-item-row[b-ut0n6kfiwm] {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.add-item-addon-row[b-ut0n6kfiwm] {
    display: flex;
    align-items: center;
}

.add-item-addon-label[b-ut0n6kfiwm] {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #aaa;
    cursor: pointer;
    user-select: none;
}

    .add-item-addon-label input[type=checkbox][b-ut0n6kfiwm] {
        width: 16px;
        height: 16px;
        accent-color: #c8a96e;
        cursor: pointer;
        flex-shrink: 0;
    }

    .add-item-addon-label span[b-ut0n6kfiwm] {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 280px;
    }

.add-item-modal-footer[b-ut0n6kfiwm] {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

    .add-item-modal-footer .topbar-btn[b-ut0n6kfiwm] {
        min-width: 80px;
    }

/* ── Pay button ─────────────────────────────────────────────── */
.topbar-pay[b-ut0n6kfiwm] {
    background: #2a6b3c !important;
    border-color: #3a8b50 !important;
    color: #7ed87e !important;
}

    .topbar-pay:hover:not([disabled])[b-ut0n6kfiwm] {
        background: #357a47 !important;
        border-color: #4aaa64 !important;
        color: #a0f0a0 !important;
    }

    .topbar-pay[disabled][b-ut0n6kfiwm] {
        opacity: 0.35 !important;
    }

    .topbar-pay.submit-pay[b-ut0n6kfiwm] {
        flex: 1;
    }

/* ── Payment modal ───────────────────────────────────────────── */
.pay-modal[b-ut0n6kfiwm] {
    background: #1e1e28;
    border: 1px solid #c8a96e;
    border-radius: 12px;
    padding: 20px;
    width: min(420px, 96vw);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pay-modal-header[b-ut0n6kfiwm] {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.pay-modal-title[b-ut0n6kfiwm] {
    font-size: 16px;
    font-weight: 600;
    color: #f0ece3;
    flex: 1;
    letter-spacing: 0.3px;
}

.pay-modal-close[b-ut0n6kfiwm] {
    background: none;
    border: none;
    color: #888;
    font-size: 20px;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    transition: color 0.15s;
}

    .pay-modal-close:hover[b-ut0n6kfiwm] {
        color: #e05c5c;
    }

.pay-modal-body[b-ut0n6kfiwm] {
    display: flex;
    flex-direction: column;
}

.pay-modal-footer[b-ut0n6kfiwm] {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

    .pay-modal-footer .topbar-btn[b-ut0n6kfiwm] {
        flex: 1;
    }

.pay-row[b-ut0n6kfiwm] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #1e1e2a;
}

    .pay-row:last-child[b-ut0n6kfiwm] {
        border-bottom: none;
    }

.pay-total-ref[b-ut0n6kfiwm] {
    opacity: 0.7;
}

.pay-label[b-ut0n6kfiwm] {
    font-size: 13px;
    color: #aaa;
    font-weight: 500;
    min-width: 90px;
}

.pay-amount-wrap[b-ut0n6kfiwm] {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #1a1a24;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 4px 10px;
}

    .pay-amount-wrap:focus-within[b-ut0n6kfiwm] {
        border-color: #c8a96e;
    }

.pay-currency[b-ut0n6kfiwm] {
    color: #c8a96e;
    font-size: 15px;
    font-weight: 600;
}

.pay-amount-input[b-ut0n6kfiwm] {
    background: transparent;
    border: none;
    color: #f0ece3;
    font-size: 18px;
    font-weight: 600;
    width: 90px;
    outline: none;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

    .pay-amount-input[b-ut0n6kfiwm]::-webkit-inner-spin-button,
    .pay-amount-input[b-ut0n6kfiwm]::-webkit-outer-spin-button {
        opacity: 0.4;
    }

.pay-total-val[b-ut0n6kfiwm] {
    font-size: 14px;
    color: #e0dcd4;
    font-variant-numeric: tabular-nums;
}

.pay-summary-row[b-ut0n6kfiwm] {
    opacity: 0.75;
}

.pay-paid-val[b-ut0n6kfiwm] {
    font-size: 14px;
    color: #7ed87e;
    font-variant-numeric: tabular-nums;
}

.pay-due-row[b-ut0n6kfiwm] {
    background: rgba(200,169,110,0.06);
    margin: 0 -16px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(200,169,110,0.2) !important;
}

.pay-due-label[b-ut0n6kfiwm] {
    color: #c8a96e !important;
    font-weight: 600;
}

.pay-due-val[b-ut0n6kfiwm] {
    font-size: 17px;
    font-weight: 700;
    color: #c8a96e;
    font-variant-numeric: tabular-nums;
}

.pay-change-row[b-ut0n6kfiwm] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px solid #1e1e2a;
}

.pay-change-val[b-ut0n6kfiwm] {
    font-size: 15px;
    font-weight: 600;
    color: #7ed87e;
    font-variant-numeric: tabular-nums;
}

.pay-method-toggle[b-ut0n6kfiwm] {
    display: flex;
    gap: 6px;
}

.pay-method-btn[b-ut0n6kfiwm] {
    padding: 6px 18px;
    border-radius: 8px;
    border: 1px solid #444;
    background: #1a1a24;
    color: #888;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}

    .pay-method-btn.active[b-ut0n6kfiwm] {
        border-color: #c8a96e;
        background: rgba(200,169,110,0.15);
        color: #c8a96e;
    }

    .pay-method-btn:hover:not(.active)[b-ut0n6kfiwm] {
        border-color: #666;
        color: #ccc;
    }

.pay-print-row[b-ut0n6kfiwm] {
    cursor: pointer;
}

.pay-print-chk[b-ut0n6kfiwm] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #c8a96e;
}

.pay-error[b-ut0n6kfiwm] {
    margin-top: 8px;
    padding: 8px 10px;
    background: rgba(224,92,92,0.08);
    border: 1px solid rgba(224,92,92,0.25);
    border-radius: 6px;
    font-size: 12px;
    color: #e05c5c;
}
/* /Pages/OrderSplit.razor.rz.scp.css */
/* OrderSplit.razor.css
   Shared styles (back-btn, table-badge, ticket-ref, empty-state,
   modal-backdrop, pay-modal-close) come from sgpos-common.css */

/* ── Page layout ─────────────────────────────────────────────────────────── */

.split-page[b-3c1u5z2jjj] {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 56px);
    overflow: hidden;
    background: var(--col-bg-page);
    font-family: var(--font-ui);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Header ──────────────────────────────────────────────────────────────── */

.split-header[b-3c1u5z2jjj] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-bottom: 1px solid var(--col-border);
    background: var(--col-bg-header);
    flex-shrink: 0;
}

.split-header-info[b-3c1u5z2jjj] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.split-groups-btn[b-3c1u5z2jjj] {
    background: rgba(200,169,110,0.1);
    border: 1px solid var(--col-gold);
    color: var(--col-gold);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
    white-space: nowrap;
}

    .split-groups-btn:hover[b-3c1u5z2jjj] {
        background: rgba(200,169,110,0.2);
    }

/* ── Status message ──────────────────────────────────────────────────────── */

.split-status[b-3c1u5z2jjj] {
    padding: 6px 12px;
    font-size: 12px;
    flex-shrink: 0;
}

.split-status-ok[b-3c1u5z2jjj] {
    color: var(--col-green);
    background: rgba(126,216,126,0.06);
}

.split-status-error[b-3c1u5z2jjj] {
    color: var(--col-red);
    background: rgba(224,92,92,0.06);
}

/* ── Groups summary bar ──────────────────────────────────────────────────── */

.split-groups-bar[b-3c1u5z2jjj] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    overflow-x: auto;
    border-bottom: 1px solid var(--col-border);
    flex-shrink: 0;
    scrollbar-width: none;
    background: var(--col-bg-panel);
}

    .split-groups-bar[b-3c1u5z2jjj]::-webkit-scrollbar {
        display: none;
    }

.split-group-chip[b-3c1u5z2jjj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 10px;
    border-radius: var(--radius-md);
    border: 1px solid var(--col-border);
    background: var(--col-bg-dark);
    cursor: pointer;
    white-space: nowrap;
    min-width: 70px;
    transition: all 0.15s;
    flex-shrink: 0;
}

    .split-group-chip.selected[b-3c1u5z2jjj] {
        border-color: var(--col-gold);
        background: rgba(200,169,110,0.1);
    }

    .split-group-chip:hover:not(.selected)[b-3c1u5z2jjj] {
        border-color: #555;
    }

.split-group-chip-name[b-3c1u5z2jjj] {
    font-size: 11px;
    font-weight: 600;
    color: var(--col-text-dim);
    letter-spacing: 0.3px;
}

.split-group-chip-total[b-3c1u5z2jjj] {
    font-size: 12px;
    color: var(--col-gold);
    font-variant-numeric: tabular-nums;
}

.split-add-group-btn[b-3c1u5z2jjj] {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px dashed #555;
    background: transparent;
    color: #888;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .split-add-group-btn:hover[b-3c1u5z2jjj] {
        border-color: var(--col-gold);
        color: var(--col-gold);
    }

/* ── Hint ─────────────────────────────────────────────────────────────────── */

.split-hint[b-3c1u5z2jjj] {
    font-size: 11px;
    color: var(--col-text-faint);
    padding: 5px 12px;
    border-bottom: 1px solid var(--col-border-dark);
    flex-shrink: 0;
}

.split-group-name-inline[b-3c1u5z2jjj] {
    color: var(--col-gold);
    font-style: normal;
}

/* ── Items list ──────────────────────────────────────────────────────────── */

.split-items[b-3c1u5z2jjj] {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 4px;
}

.split-item-row[b-3c1u5z2jjj] {
    display: flex;
    align-items: flex-start;
    padding: 8px 12px;
    border-bottom: 1px solid var(--col-border-dark);
    gap: 10px;
    transition: background 0.1s;
}

    .split-item-row.assigned-selected[b-3c1u5z2jjj] {
        background: rgba(200,169,110,0.04);
    }

.split-item-content[b-3c1u5z2jjj] {
    flex: 1;
    min-width: 0;
}

.split-item-name[b-3c1u5z2jjj] {
    font-size: 14px;
    color: var(--col-text-dim);
    display: block;
}

.split-item-children[b-3c1u5z2jjj] {
    display: flex;
    flex-direction: column;
    gap: 1px;
    margin-top: 2px;
}

.split-child-name[b-3c1u5z2jjj] {
    font-size: 12px;
    color: var(--col-text-muted);
    padding-left: 4px;
}

.split-item-right[b-3c1u5z2jjj] {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.split-item-qty[b-3c1u5z2jjj] {
    font-size: 12px;
    color: var(--col-text-muted);
}

.split-item-price[b-3c1u5z2jjj] {
    font-size: 14px;
    color: var(--col-gold);
    font-variant-numeric: tabular-nums;
    min-width: 56px;
    text-align: right;
}

/* ── Group badge (on items) ──────────────────────────────────────────────── */

.split-group-badge[b-3c1u5z2jjj] {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: none;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.1s;
}

    .split-group-badge:active[b-3c1u5z2jjj] {
        transform: scale(0.88);
    }

/* 9 distinct group colours */
.group-color-0[b-3c1u5z2jjj] {
    background: #2a5080;
    color: #90c8ff;
}

.group-color-1[b-3c1u5z2jjj] {
    background: #3a6b30;
    color: #90e880;
}

.group-color-2[b-3c1u5z2jjj] {
    background: #7a4a10;
    color: #ffc060;
}

.group-color-3[b-3c1u5z2jjj] {
    background: #6a2060;
    color: #f090d0;
}

.group-color-4[b-3c1u5z2jjj] {
    background: #4a3080;
    color: #b090ff;
}

.group-color-5[b-3c1u5z2jjj] {
    background: #206060;
    color: #60d0d0;
}

.group-color-6[b-3c1u5z2jjj] {
    background: #703030;
    color: #f09090;
}

.group-color-7[b-3c1u5z2jjj] {
    background: #505010;
    color: #d0c040;
}

.group-color-8[b-3c1u5z2jjj] {
    background: #203050;
    color: #70a0c0;
}

/* ── Totals panel ────────────────────────────────────────────────────────── */

.split-totals[b-3c1u5z2jjj] {
    border-top: 1px solid var(--col-border);
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: var(--col-bg-panel);
    flex-shrink: 0;
}

.split-totals-row[b-3c1u5z2jjj] {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--col-text-muted);
    font-variant-numeric: tabular-nums;
}

.split-total-amount[b-3c1u5z2jjj] {
    font-size: 16px;
    font-weight: 600;
    color: var(--col-gold);
}

.split-group-total[b-3c1u5z2jjj] {
    color: var(--col-text-dim);
    padding-left: 8px;
}

.split-unassigned[b-3c1u5z2jjj] {
    color: #f5a623;
    padding-left: 8px;
    font-size: 12px;
}

/* ── Footer actions ──────────────────────────────────────────────────────── */

.split-footer[b-3c1u5z2jjj] {
    display: flex;
    gap: 10px;
    padding: 10px 12px;
    border-top: 1px solid var(--col-border);
    background: var(--col-bg-header);
    flex-shrink: 0;
}

.split-btn[b-3c1u5z2jjj] {
    flex: 1;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid;
    transition: all 0.15s;
}

    .split-btn:disabled[b-3c1u5z2jjj] {
        opacity: 0.4;
        cursor: not-allowed;
    }

.split-btn-primary[b-3c1u5z2jjj] {
    background: #2a6b3c;
    border-color: #3a8b50;
    color: #7ed87e;
}

    .split-btn-primary:hover:not(:disabled)[b-3c1u5z2jjj] {
        background: #357a47;
        border-color: #4aaa64;
        color: #a0f0a0;
    }

.split-btn-secondary[b-3c1u5z2jjj] {
    background: transparent;
    border-color: #555;
    color: var(--col-text-muted);
}

    .split-btn-secondary:hover:not(:disabled)[b-3c1u5z2jjj] {
        border-color: #888;
        color: var(--col-text);
    }

.split-btn-add-group[b-3c1u5z2jjj] {
    flex: 0 0 auto;
    background: transparent;
    border-color: #444;
    color: #888;
    letter-spacing: 0.3px;
}

    .split-btn-add-group:hover:not(:disabled)[b-3c1u5z2jjj] {
        border-color: var(--col-gold);
        color: var(--col-gold);
    }

/* ── Groups modal ────────────────────────────────────────────────────────── */

.split-modal[b-3c1u5z2jjj] {
    background: #1e1e28;
    border: 1px solid var(--col-gold);
    border-radius: var(--radius-lg);
    padding: 20px;
    width: min(380px, 94vw);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.split-modal-header[b-3c1u5z2jjj] {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.split-modal-title[b-3c1u5z2jjj] {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--col-text);
    letter-spacing: 0.3px;
}

.split-modal-body[b-3c1u5z2jjj] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 4px;
}

.split-name-row[b-3c1u5z2jjj] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.split-name-input[b-3c1u5z2jjj] {
    flex: 1;
    background: #111116;
    border: 1px solid #444;
    border-radius: var(--radius-sm);
    color: var(--col-text);
    font-size: 14px;
    padding: 6px 10px;
    outline: none;
    transition: border-color 0.15s;
}

    .split-name-input:focus[b-3c1u5z2jjj] {
        border-color: var(--col-gold);
    }

.split-remove-group-btn[b-3c1u5z2jjj] {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #444;
    background: transparent;
    color: #666;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.15s;
    line-height: 1;
}

    .split-remove-group-btn:hover[b-3c1u5z2jjj] {
        border-color: var(--col-red);
        color: var(--col-red);
        background: rgba(224,92,92,0.08);
    }

.split-modal-footer[b-3c1u5z2jjj] {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
/* /Pages/Settings.razor.rz.scp.css */
/* ════════════════════════════════════════════════════════
   Settings page — two-panel layout (nav left, detail right)
   ════════════════════════════════════════════════════════ */

.settings-page[b-v81xs78rcn] {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 56px);
    overflow: hidden;
    background: #1b1b22;
    font-family: 'Segoe UI', sans-serif;
}

/* ── Left nav panel ─────────────────────────────────────── */

.settings-nav-panel[b-v81xs78rcn] {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    background: #111116;
    border-right: 1px solid #2a2a35;
    overflow-y: auto;
}

.settings-user-card[b-v81xs78rcn] {
    padding: 14px 16px 12px;
    border-bottom: 1px solid #2a2a35;
    background: #0d0d12;
    flex-shrink: 0;
}

.settings-user-name[b-v81xs78rcn] {
    font-size: 14px;
    font-weight: 600;
    color: #f0ece3;
    margin-bottom: 4px;
}

.settings-user-meta[b-v81xs78rcn] {
    font-size: 11px;
    color: #555;
    line-height: 1.6;
}

.settings-nav-item[b-v81xs78rcn] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border-bottom: 1px solid #1a1a22;
    cursor: pointer;
    transition: background 0.15s;
    user-select: none;
}

    .settings-nav-item:hover[b-v81xs78rcn] {
        background: rgba(200,169,110,0.06);
    }

    .settings-nav-item.active[b-v81xs78rcn] {
        background: rgba(200,169,110,0.1);
        border-left: 3px solid #c8a96e;
        padding-left: 13px; /* compensate for border */
    }

.nav-item-name[b-v81xs78rcn] {
    font-size: 14px;
    font-weight: 500;
    color: #e0dcd4;
}

.settings-nav-item.active .nav-item-name[b-v81xs78rcn] {
    color: #c8a96e;
}

.nav-item-status[b-v81xs78rcn] {
    font-size: 11px;
    border-radius: 10px;
    padding: 1px 8px;
    align-self: flex-start;
}

.nav-item-status.is-set[b-v81xs78rcn] {
    background: rgba(126,216,126,0.12);
    color: #7ed87e;
}

.nav-item-status.is-unset[b-v81xs78rcn] {
    background: rgba(80,80,90,0.2);
    color: #555;
}

.nav-item-status.is-neutral[b-v81xs78rcn] {
    background: rgba(200,169,110,0.1);
    color: #c8a96e;
}

/* ── Right detail panel ─────────────────────────────────── */

.settings-detail-panel[b-v81xs78rcn] {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #1b1b22;
    min-width: 0;
}

.detail-header[b-v81xs78rcn] {
    padding: 14px 20px 12px;
    background: #0d0d12;
    border-bottom: 1px solid #2a2a35;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.detail-title[b-v81xs78rcn] {
    font-size: 16px;
    font-weight: 600;
    color: #c8a96e;
}

.detail-hint[b-v81xs78rcn] {
    font-size: 12px;
    color: #555;
    line-height: 1.4;
}

.detail-empty[b-v81xs78rcn] {
    padding: 32px 20px;
    color: #555;
    font-size: 13px;
}

.detail-hint-center[b-v81xs78rcn] {
    padding: 32px 20px;
    color: #555;
    font-size: 13px;
    text-align: center;
}

/* ── Shared action bar ───────────────────────────────────── */

.detail-actions[b-v81xs78rcn] {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #2a2a35;
    background: #0d0d12;
    flex-shrink: 0;
}

/* ── Category / Printer list rows ────────────────────────── */

.cat-list[b-v81xs78rcn] {
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    flex: 1;
}

.cat-row[b-v81xs78rcn] {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #1a1a22;
    gap: 12px;
    min-height: 48px;
}

    .cat-row:last-child[b-v81xs78rcn] {
        border-bottom: none;
    }

.cat-name[b-v81xs78rcn] {
    flex: 1;
    font-size: 14px;
    color: #e0dcd4;
}

.cat-controls[b-v81xs78rcn] {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
    align-items: center;
}

.printer-type-label[b-v81xs78rcn] {
    font-size: 11px;
    color: #555;
    margin-left: 6px;
}

.printer-default-tick[b-v81xs78rcn] {
    color: #7ed87e;
    font-size: 13px;
    padding: 0 8px;
}

/* ── Reorder buttons ─────────────────────────────────────── */

.reorder-btn[b-v81xs78rcn] {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #1e1e28;
    cursor: pointer;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.15s;
    color: #aaa;
}

    .reorder-btn:hover:not([disabled])[b-v81xs78rcn] {
        border-color: #c8a96e;
        color: #c8a96e;
        background: rgba(200,169,110,0.08);
    }

    .reorder-btn[disabled][b-v81xs78rcn] {
        opacity: 0.2;
        cursor: not-allowed;
    }

    .reorder-btn.up[b-v81xs78rcn] { color: #4caf50; }

        .reorder-btn.up:hover:not([disabled])[b-v81xs78rcn] {
            border-color: #4caf50;
            color: #4caf50;
            background: rgba(76,175,80,0.08);
        }

    .reorder-btn.down[b-v81xs78rcn] { color: #fb8c00; }

        .reorder-btn.down:hover:not([disabled])[b-v81xs78rcn] {
            border-color: #fb8c00;
            color: #fb8c00;
            background: rgba(251,140,0,0.08);
        }

/* ── Settings buttons ────────────────────────────────────── */

.settings-btn[b-v81xs78rcn] {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid;
    transition: all 0.15s;
}

.settings-btn-reset[b-v81xs78rcn] {
    border-color: #555;
    background: transparent;
    color: #aaa;
}

    .settings-btn-reset:hover:not([disabled])[b-v81xs78rcn] {
        border-color: #e05c5c;
        color: #e05c5c;
        background: rgba(224,92,92,0.08);
    }

.settings-btn-save[b-v81xs78rcn] {
    border-color: #3a7a50;
    background: rgba(58,122,80,0.12);
    color: #7ed87e;
}

    .settings-btn-save:hover:not([disabled])[b-v81xs78rcn] {
        border-color: #7ed87e;
        background: rgba(58,122,80,0.25);
        color: #a0f0a0;
    }

    .settings-btn-save[disabled][b-v81xs78rcn] {
        opacity: 0.35;
        cursor: not-allowed;
    }

.settings-btn-load[b-v81xs78rcn] {
    border-color: #3a5a9a;
    background: rgba(58,90,154,0.12);
    color: #7ab0f5;
}

    .settings-btn-load:hover:not([disabled])[b-v81xs78rcn] {
        border-color: #7ab0f5;
        background: rgba(58,90,154,0.25);
        color: #a0c8ff;
    }

    .settings-btn-load[disabled][b-v81xs78rcn] {
        opacity: 0.35;
        cursor: not-allowed;
    }

/* ── Saved message flash ─────────────────────────────────── */

.settings-saved-msg[b-v81xs78rcn] {
    font-size: 12px;
    color: #7ed87e;
    opacity: 0;
    transition: opacity 0.3s;
}

    .settings-saved-msg.visible[b-v81xs78rcn] {
        opacity: 1;
    }

    .settings-saved-msg.error[b-v81xs78rcn] {
        color: #e05c5c;
    }

/* ── Saved Settings blocks ───────────────────────────────── */

.saved-block[b-v81xs78rcn] {
    padding: 16px 20px;
    border-bottom: 1px solid #2a2a35;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.saved-block-label[b-v81xs78rcn] {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.saved-save-row[b-v81xs78rcn] {
    display: flex;
    gap: 10px;
    align-items: center;
}

.saved-name-input[b-v81xs78rcn] {
    flex: 1;
    min-width: 0;
}

.saved-filename-preview[b-v81xs78rcn] {
    font-size: 12px;
    color: #555;
}

.layout-filename-preview[b-v81xs78rcn] {
    color: #c8a96e;
    font-family: monospace;
    font-size: 12px;
}

.layout-name-input[b-v81xs78rcn] {
    padding: 9px 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #13131a;
    color: #f0ece3;
    font-size: 14px;
    font-family: 'Segoe UI', sans-serif;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s;
}

    .layout-name-input:focus[b-v81xs78rcn] {
        border-color: #c8a96e;
    }

    .layout-name-input[b-v81xs78rcn]::placeholder {
        color: #555;
    }

.layout-input-error[b-v81xs78rcn] {
    font-size: 12px;
    color: #e05c5c;
    margin: 0;
}

.layout-file-list[b-v81xs78rcn] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 260px;
    overflow-y: auto;
}

.layout-file-row[b-v81xs78rcn] {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #2a2a35;
    background: #13131a;
    color: #e0dcd4;
    font-size: 13px;
    cursor: pointer;
    text-align: left;
    transition: all 0.15s;
    font-family: monospace;
    gap: 8px;
}

    .layout-file-row:hover[b-v81xs78rcn] {
        border-color: #444;
        background: #1a1a24;
    }

    .layout-file-row.selected[b-v81xs78rcn] {
        border-color: #c8a96e;
        background: rgba(200,169,110,0.1);
        color: #c8a96e;
    }

.layout-file-name[b-v81xs78rcn] { flex: 1; }

.layout-file-check[b-v81xs78rcn] {
    flex-shrink: 0;
    color: #7ed87e;
    font-size: 14px;
}

/* ── Item Order — category/sub-category chip bars ────────── */
/* (Inlined from ItemsReorg.razor.css — scoped CSS is per-component) */

.reorg-cat-bar[b-v81xs78rcn],
.reorg-subcat-bar[b-v81xs78rcn] {
    display: flex;
    gap: 8px;
    padding: 10px 16px;
    overflow-x: auto;
    flex-shrink: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: #1b1b22;
    border-bottom: 1px solid #2a2a35;
}

    .reorg-cat-bar[b-v81xs78rcn]::-webkit-scrollbar,
    .reorg-subcat-bar[b-v81xs78rcn]::-webkit-scrollbar {
        display: none;
    }

.reorg-subcat-bar[b-v81xs78rcn] {
    padding-top: 6px;
    padding-bottom: 8px;
}

.cat-chip[b-v81xs78rcn],
.subcat-chip[b-v81xs78rcn] {
    flex-shrink: 0;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #333;
    background: #111116;
    color: #aaa;
    font-size: 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.15s;
}

    .cat-chip:hover[b-v81xs78rcn],
    .subcat-chip:hover[b-v81xs78rcn] {
        border-color: #c8a96e;
        color: #c8a96e;
    }

    .cat-chip.active[b-v81xs78rcn] {
        border-color: #c8a96e;
        background: rgba(200,169,110,0.12);
        color: #c8a96e;
        font-weight: 600;
    }

.subcat-chip[b-v81xs78rcn] {
    font-size: 12px;
    padding: 6px 12px;
}

    .subcat-chip.active[b-v81xs78rcn] {
        border-color: #6ab0f5;
        background: rgba(106,176,245,0.1);
        color: #6ab0f5;
        font-weight: 600;
    }

/* ── Item Order — product drag grid ─────────────────────── */

.reorg-list-wrapper[b-v81xs78rcn] {
    flex: 1;
    overflow-y: auto;
    background: #12121a;
}

.items-grid[b-v81xs78rcn] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 7px;
    padding: 10px;
}

.menu-item[b-v81xs78rcn] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 11px 12px;
    background: #1a1a24;
    border: 1px solid #26262e;
    border-radius: 7px;
    color: #e0dcd4;
    cursor: grab;
    text-align: left;
    user-select: none;
    touch-action: auto;
}

.drag-handle[b-v81xs78rcn] {
    align-self: flex-end;
    font-size: 1.1rem;
    line-height: 1;
    color: #6b6b7a;
    cursor: grab;
    touch-action: none;
    padding: 2px 4px;
    border-radius: 4px;
    margin-bottom: -4px;
}

    .drag-handle:active[b-v81xs78rcn] {
        cursor: grabbing;
        color: #c8a96e;
    }

    .menu-item:active[b-v81xs78rcn] {
        cursor: grabbing;
    }

    .menu-item.drag-ghost[b-v81xs78rcn] {
        opacity: 0.4;
    }

    .menu-item.drag-chosen[b-v81xs78rcn] {
        border-color: #c8a96e;
        background: rgba(200,169,110,0.12);
        box-shadow: 0 3px 12px rgba(0,0,0,0.35);
    }

.item-name[b-v81xs78rcn] {
    font-size: 12px;
    line-height: 1.3;
}

.item-price[b-v81xs78rcn] {
    font-size: 13px;
    color: #c8a96e;
}
/* /Pages/SummaryReport.razor.rz.scp.css */
/* SummaryReport.razor.css — page-specific styles only.
   Shared styles (report-page, section-label base, section-hint,
   error-banner, empty-state, loading-msg, filter-btn, item-qty,
   alt, col-right) are in sgpos-common.css */

.report-header[b-ve1nsl7a5f] {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #2a2a35;
}

.report-title-row[b-ve1nsl7a5f] {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.report-title[b-ve1nsl7a5f] {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    color: #A18263;
}

.report-count[b-ve1nsl7a5f] {
    font-size: 12px;
    color: #888;
    background: #1e1e28;
    border: 1px solid #2a2a35;
    padding: 2px 8px;
    border-radius: 10px;
}

button.report-count[b-ve1nsl7a5f] {
    cursor: pointer;
    transition: color 0.15s, border-color 0.15s;
}

    button.report-count:hover[b-ve1nsl7a5f] {
        color: #c8a96e;
        border-color: #c8a96e;
    }

.report-subtitle[b-ve1nsl7a5f] {
    margin: 4px 0 0;
    font-size: 12px;
    color: #666;
}

/* Override common .section-label margin for report page spacing */
.section-label[b-ve1nsl7a5f] {
    margin-top: 20px;
}

/* Makes the Items Sold label row clickable */
.section-label-toggle[b-ve1nsl7a5f] {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    user-select: none;
}

    .section-label-toggle:hover[b-ve1nsl7a5f] {
        color: #aaa;
    }

/* Push chevron to the right edge */
.toggle-chevron[b-ve1nsl7a5f] {
    margin-left: auto;
    font-size: 16px;
    color: #6ab0f5;
    line-height: 1;
    transition: transform 0.2s ease;
    display: inline-block;
}

    /* Rotate 180° when open so ˅ becomes ˄ */
    .toggle-chevron.chevron-open[b-ve1nsl7a5f] {
        transform: rotate(180deg);
    }

.tile-row[b-ve1nsl7a5f] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tile[b-ve1nsl7a5f] {
    flex: 1 1 120px;
    min-width: 100px;
    background: #111116;
    border: 1px solid #2a2a35;
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tile-accent[b-ve1nsl7a5f] {
    border-color: #c8a96e;
    background: #1a160d;
}

.tile-wix[b-ve1nsl7a5f] {
    border-color: #5a8fff;
    background: #0d1020;
}

.tile-label[b-ve1nsl7a5f] {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #888;
}

.tile-accent .tile-label[b-ve1nsl7a5f] {
    color: #c8a96e;
}

.tile-wix .tile-label[b-ve1nsl7a5f] {
    color: #5a8fff;
}

.tile-count[b-ve1nsl7a5f] {
    font-size: 22px;
    font-weight: 600;
    color: #f0ece3;
    line-height: 1.1;
}

.tile-value[b-ve1nsl7a5f] {
    font-size: 13px;
    color: #c8a96e;
    font-variant-numeric: tabular-nums;
}

.items-table[b-ve1nsl7a5f] {
    background: #111116;
    border: 1px solid #2a2a35;
    border-radius: 10px;
    overflow: hidden;
}

.items-table-head[b-ve1nsl7a5f] {
    display: grid;
    grid-template-columns: 1fr 60px 90px;
    background: #0d0d12;
    border-bottom: 1px solid #2a2a35;
}

.sort-header[b-ve1nsl7a5f] {
    padding: 8px 12px;
    background: none;
    border: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
    cursor: pointer;
    text-align: left;
    transition: color 0.15s;
    white-space: nowrap;
}

    .sort-header:hover[b-ve1nsl7a5f] {
        color: #aaa;
    }

    .sort-header.sort-active[b-ve1nsl7a5f] {
        color: #c8a96e;
    }

.items-row[b-ve1nsl7a5f] {
    display: grid;
    grid-template-columns: 28px 1fr 60px 90px;
    padding: 7px 12px;
    border-bottom: 1px solid #18181f;
    font-size: 13px;
    align-items: center;
}

    .items-row:last-child[b-ve1nsl7a5f] {
        border-bottom: none;
    }

    .items-row.alt[b-ve1nsl7a5f] {
        background: #0f0f16;
    }

    .items-row:hover[b-ve1nsl7a5f] {
        background: #1a1a24;
    }

.item-rank[b-ve1nsl7a5f] {
    font-size: 11px;
    color: #444;
    font-variant-numeric: tabular-nums;
}

.item-text[b-ve1nsl7a5f] {
    color: #e0dcd4;
}

.item-rev[b-ve1nsl7a5f] {
    color: #c8a96e;
    font-variant-numeric: tabular-nums;
}

.items-empty[b-ve1nsl7a5f] {
    padding: 30px;
    text-align: center;
    color: #555;
    font-size: 13px;
}

.cal-backdrop[b-ve1nsl7a5f] {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0,0,0,.45);
}

.cal-popup[b-ve1nsl7a5f] {
    position: fixed;
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 101;
    background: #111116;
    border: 1px solid #2a2a35;
    border-radius: 12px;
    padding: 14px;
    width: 280px;
    box-shadow: 0 8px 32px rgba(0,0,0,.6);
}

.cal-header[b-ve1nsl7a5f] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cal-month-label[b-ve1nsl7a5f] {
    font-size: 13px;
    font-weight: 600;
    color: #f0ece3;
    letter-spacing: 0.5px;
}

.cal-nav[b-ve1nsl7a5f] {
    background: none;
    border: 1px solid #2a2a35;
    color: #aaa;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s;
}

    .cal-nav:hover[b-ve1nsl7a5f] {
        border-color: #666;
        color: #f0ece3;
    }

.cal-grid[b-ve1nsl7a5f] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.cal-dow[b-ve1nsl7a5f] {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555;
    text-align: center;
    padding: 4px 0;
}

.cal-day[b-ve1nsl7a5f] {
    background: none;
    border: 1px solid transparent;
    border-radius: 6px;
    color: #666;
    font-size: 13px;
    padding: 5px 0;
    text-align: center;
    cursor: not-allowed;
    transition: all 0.12s;
    width: 100%;
}

    .cal-day.cal-has-data[b-ve1nsl7a5f] {
        color: #6ab0f5;
        border-color: #1a3a5a;
        background: rgba(106,176,245,.08);
        cursor: pointer;
    }

        .cal-day.cal-has-data:hover[b-ve1nsl7a5f] {
            background: rgba(106,176,245,.2);
            border-color: #6ab0f5;
        }

    .cal-day.cal-today[b-ve1nsl7a5f] {
        color: #c8a96e;
        border-color: #5a4d33;
        cursor: pointer;
    }

    .cal-day.cal-selected[b-ve1nsl7a5f] {
        background: rgba(200,169,110,.25);
        border-color: #c8a96e;
        color: #c8a96e;
        font-weight: 600;
        cursor: pointer;
    }

    .cal-day.cal-future[b-ve1nsl7a5f] {
        opacity: 0.25;
    }

@@media (max-width: 480px) {
    .tile[b-ve1nsl7a5f] {
        flex: 1 1 calc(50% - 4px);
    }

    .items-table-head[b-ve1nsl7a5f] {
        grid-template-columns: 1fr 50px 70px;
    }

    .items-row[b-ve1nsl7a5f] {
        grid-template-columns: 24px 1fr 50px 70px;
        font-size: 12px;
    }

    .cal-popup[b-ve1nsl7a5f] {
        width: calc(100vw - 32px);
        top: 52px;
    }
}

.today-live-badge[b-ve1nsl7a5f] {
    display: inline-block;
    margin-left: 8px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #7ed87e;
    vertical-align: middle;
    animation: live-pulse-b-ve1nsl7a5f 2s ease-in-out infinite;
}

@keyframes live-pulse-b-ve1nsl7a5f {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}
/* /Pages/TaxReport.razor.rz.scp.css */

.report-page[b-uowmvpzqqp] {
    max-width: 900px;
    margin: 0 auto;
    padding: 16px 16px 40px;
    font-family: 'Segoe UI', sans-serif;
    color: #f0ece3;
}

/* ── Date bar ────────────────────────────────────────────────── */
.date-bar[b-uowmvpzqqp] {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 12px 14px;
    background: #111116;
    border: 1px solid #2a2a35;
    border-radius: 10px;
}

.date-field[b-uowmvpzqqp] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .date-field label[b-uowmvpzqqp] {
        font-size: 10px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #666;
    }

    .date-field input[type="date"][b-uowmvpzqqp] {
        background: #1a1a24;
        border: 1px solid #2a2a35;
        color: #f0ece3;
        padding: 5px 9px;
        border-radius: 6px;
        font-size: 13px;
        min-width: 130px;
    }

.run-btn[b-uowmvpzqqp] {
    padding: 6px 18px;
    background: #c8a96e;
    color: #0d0d12;
    border: none;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    align-self: flex-end;
}

    .run-btn:hover:not(:disabled)[b-uowmvpzqqp] {
        background: #dfc080;
    }

    .run-btn:disabled[b-uowmvpzqqp] {
        background: #5a4d33;
        color: #888;
        cursor: not-allowed;
    }

/* ── Error ───────────────────────────────────────────────────── */
.error-banner[b-uowmvpzqqp] {
    margin-bottom: 16px;
    padding: 8px 14px;
    background: rgba(220, 53, 69, 0.12);
    border: 1px solid rgba(220, 53, 69, 0.35);
    border-radius: 8px;
    color: #ff6b7a;
    font-size: 13px;
}

/* ── Section label ───────────────────────────────────────────── */
.section-label[b-uowmvpzqqp] {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin: 0 0 8px;
}

.section-hint[b-uowmvpzqqp] {
    font-size: 10px;
    letter-spacing: 0;
    text-transform: none;
    color: #555;
}

/* ── Report table ────────────────────────────────────────────── */
.report-table[b-uowmvpzqqp] {
    background: #111116;
    border: 1px solid #2a2a35;
    border-radius: 10px;
    overflow: hidden;
}

.report-head[b-uowmvpzqqp] {
    display: grid;
    grid-template-columns: 1fr 80px 80px 90px;
    padding: 8px 12px;
    background: #0d0d12;
    border-bottom: 1px solid #2a2a35;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
}

.report-row[b-uowmvpzqqp] {
    display: grid;
    grid-template-columns: 1fr 80px 80px 90px;
    padding: 8px 12px;
    border-bottom: 1px solid #18181f;
    font-size: 13px;
    align-items: center;
}

    .report-row:last-child[b-uowmvpzqqp] {
        border-bottom: none;
    }

    .report-row.alt[b-uowmvpzqqp] {
        background: #0f0f16;
    }

    .report-row:hover[b-uowmvpzqqp] {
        background: #1a1a24;
    }

.total-row[b-uowmvpzqqp] {
    display: grid;
    grid-template-columns: 1fr 80px 80px 90px;
    padding: 9px 12px;
    border-top: 1px solid #2a2a35;
    font-size: 13px;
    font-weight: 600;
    color: #f0ece3;
    background: #13131a;
}

.period-cell[b-uowmvpzqqp] {
    color: #e0dcd4;
}

.col-right[b-uowmvpzqqp] {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.money[b-uowmvpzqqp] {
    color: #e0dcd4;
}

.tax[b-uowmvpzqqp] {
    color: #6ab0f5;
}

.gross[b-uowmvpzqqp] {
    color: #c8a96e;
}

.total-row .col-right[b-uowmvpzqqp] {
    color: #c8a96e;
}

.empty-row[b-uowmvpzqqp] {
    padding: 28px;
    text-align: center;
    color: #555;
    font-size: 13px;
}

/* ── TopBar filter buttons (same as Tickets.razor) ───────────── */
.filter-btn[b-uowmvpzqqp] {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid;
    transition: all 0.15s;
    white-space: nowrap;
}

    .filter-btn.active[b-uowmvpzqqp] {
        background: rgba(200,169,110,0.18);
        border-color: #c8a96e;
        color: #c8a96e;
    }

    .filter-btn.inactive[b-uowmvpzqqp] {
        background: transparent;
        border-color: #333;
        color: #888;
    }

        .filter-btn.inactive:hover[b-uowmvpzqqp] {
            border-color: #666;
            color: #ccc;
        }

/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .report-head[b-uowmvpzqqp],
    .report-row[b-uowmvpzqqp],
    .total-row[b-uowmvpzqqp] {
        grid-template-columns: 1fr 65px 65px 72px;
        font-size: 12px;
    }

    .date-field input[type="date"][b-uowmvpzqqp] {
        min-width: 110px;
    }
}


/* /Pages/Tickets.razor.rz.scp.css */
/* Tickets.razor.css — page-specific styles only.
   Shared styles (empty-state, loading-msg, error-banner, filter-bar,
   switch controls, sort-select, back-btn) live in sgpos-common.css */

.Tickets-list[b-zwijml98e6] {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(360px, 1fr));
    gap: 12px;
    padding: 10px;
}

.new-ticket-bar[b-zwijml98e6] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
}

.new-ticket-btn[b-zwijml98e6] {
    min-width: 130px;
}

.new-ticket-error[b-zwijml98e6] {
    color: var(--bs-danger, #dc3545);
    font-size: 0.875rem;
}

/* Shared styles (filter-bar, switch controls, sort-select,
   empty-state, error-banner) are in sgpos-common.css */
/* /Pages/ViewDayTicket.razor.rz.scp.css */
/* ViewDayTicket.razor.css — page-specific styles only.
   All shared styles (view-page, view-panel, view-header, back-btn, print-btn,
   table-badge, ticket-ref, open-date, status-pill, item-row etc.) are in
   sgpos-common.css */

/* Child item indent prefix (└ character) */
.item-prefix[b-k56kdlhimo] {
    font-size: 12px;
    color: #888;
    flex-shrink: 0;
}

/* Flex row holding datetime + debug TicketId on the same line */
.open-date-row[b-k56kdlhimo] {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

/* Dimmed debug TicketId shown to the right of the datetime */
.ticket-id-debug[b-k56kdlhimo] {
    font-size: 10px;
    color: #555;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.3px;
}

/* Print pulse animation for the print button spinner */
@keyframes print-pulse-b-k56kdlhimo {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.print-btn.printing[b-k56kdlhimo] {
    border-color: #c8a96e;
    animation: print-pulse-b-k56kdlhimo 1s ease-in-out infinite;
}
/* /Pages/ViewOrder.razor.rz.scp.css */
/* ViewOrder.razor.css
   All shared styles are in sgpos-common.css (including split-bill-btn).
   The split error banner sits below TicketViewPanel, outside the panel. */

/*.view-split-error {
    max-width: 540px;
    margin: 8px auto 0;
    padding: 8px 14px;
    border-radius: 8px;
    background: rgba(224,92,92,0.12);
    border: 1px solid rgba(224,92,92,0.4);
    color: #e05c5c;
    font-size: 13px;
    font-family: var(--font-ui);
}*/
