/* ============================================================
   Choco Zaika — Main Stylesheet v2.0
   Brand palette: chocolate brown + gold
   ============================================================ */

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
    --c-primary:     #5C1A00;
    --c-primary-d:   #3D1000;
    --c-accent:      #D4A017;
    --c-accent-d:    #B8860B;
    --c-bg:          #1A0A00;
    --c-bg-light:    #2A1200;
    --c-surface:     #2E1500;
    --c-border:      #5C2E00;
    --c-text:        #F5DEB3;
    --c-text-muted:  #C4A882;
    --c-success:     #2E7D32;
    --c-warning:     #F57F17;
    --c-error:       #C62828;
    --c-info:        #1565C0;
    --c-white:       #FFFFFF;
    --sidebar-w:     240px;
    --topnav-h:      56px;
    --radius:        8px;
    --radius-lg:     12px;
    --shadow:        0 2px 8px rgba(0,0,0,.45);
    --shadow-lg:     0 4px 20px rgba(0,0,0,.6);
    --transition:    .2s ease;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    background: var(--c-bg);
    color: var(--c-text);
    line-height: 1.6;
    min-height: 100vh;
}
a { color: var(--c-accent); text-decoration: none; }
a:hover { color: var(--c-accent-d); }
img { max-width: 100%; display: block; }
input, select, textarea, button { font: inherit; }

/* ─── Scrollbar ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg-light); }
::-webkit-scrollbar-thumb { background: var(--c-primary); border-radius: 3px; }

/* ─── Layout: Sidebar + Content ─────────────────────────── */
.layout-superadmin,
.layout-franchise,
.layout-staff {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.topnav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--topnav-h);
    background: var(--c-primary-d);
    border-bottom: 2px solid var(--c-accent);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    z-index: 200;
    box-shadow: var(--shadow);
}

.sidebar-toggle {
    background: none;
    border: none;
    color: var(--c-text);
    font-size: 22px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius);
    transition: background var(--transition);
}
.sidebar-toggle:hover { background: rgba(255,255,255,.1); }

.brand { display: flex; align-items: center; }
.brand-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-accent);
    letter-spacing: .5px;
}

.topnav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-name {
    font-size: .85rem;
    color: var(--c-text-muted);
    display: none;
}
@media (min-width: 600px) { .user-name { display: block; } }

.btn-logout {
    background: var(--c-error);
    color: #fff;
    padding: 5px 12px;
    border-radius: var(--radius);
    font-size: .82rem;
    font-weight: 600;
    transition: opacity var(--transition);
}
.btn-logout:hover { opacity: .85; color: #fff; }

/* ─── Sidebar ────────────────────────────────────────────── */
.sidebar {
    position: fixed;
    top: var(--topnav-h);
    left: 0;
    width: var(--sidebar-w);
    height: calc(100vh - var(--topnav-h));
    background: var(--c-surface);
    border-right: 1px solid var(--c-border);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform var(--transition);
    z-index: 150;
    padding: 12px 0;
}
.sidebar.open { transform: translateX(0); }

.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 140;
}
.sidebar-overlay.visible { display: block; }

@media (min-width: 769px) {
    .sidebar { transform: translateX(0); }
    .sidebar-overlay { display: none !important; }
    .main-content { margin-left: var(--sidebar-w); }
}

.sidebar-nav { list-style: none; }
.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 20px;
    color: var(--c-text-muted);
    font-size: .9rem;
    font-weight: 500;
    transition: background var(--transition), color var(--transition);
    border-left: 3px solid transparent;
}
.sidebar-nav li a:hover,
.sidebar-nav li.active a {
    background: rgba(212,160,23,.12);
    color: var(--c-accent);
    border-left-color: var(--c-accent);
}
.sidebar-nav .icon { font-size: 1rem; width: 20px; text-align: center; }

/* ─── Main Content ───────────────────────────────────────── */
.main-content {
    margin-top: var(--topnav-h);
    padding: 24px 20px;
    min-height: calc(100vh - var(--topnav-h));
    flex: 1;
}
.main-content-minimal { padding: 24px 16px; min-height: 100vh; }

/* ─── Page Header ────────────────────────────────────────── */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}
.page-header h1 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--c-accent);
}
.page-header .subtitle {
    font-size: .85rem;
    color: var(--c-text-muted);
    margin-top: 2px;
}

/* ─── Cards / Stats ──────────────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}
.stat-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow);
}
.stat-card .stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--c-accent);
    line-height: 1.1;
}
.stat-card .stat-label {
    font-size: .78rem;
    color: var(--c-text-muted);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ─── Card ───────────────────────────────────────────────── */
.card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}
.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-accent);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--c-border);
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    border: none;
    border-radius: var(--radius);
    font-size: .88rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity var(--transition), transform var(--transition);
    text-decoration: none;
    min-height: 44px;
}
.btn:active { transform: scale(.97); }
.btn-primary  { background: var(--c-accent);   color: var(--c-primary-d); }
.btn-success  { background: var(--c-success);  color: #fff; }
.btn-danger   { background: var(--c-error);    color: #fff; }
.btn-warning  { background: var(--c-warning);  color: #000; }
.btn-outline  { background: transparent; border: 1px solid var(--c-border); color: var(--c-text); }
.btn-sm       { padding: 6px 12px; font-size: .8rem; min-height: 34px; }
.btn:hover    { opacity: .88; }
.btn:disabled { opacity: .4; cursor: not-allowed; }

/* ─── Forms ──────────────────────────────────────────────── */
.form-group  { margin-bottom: 18px; }
.form-label  { display: block; font-size: .85rem; font-weight: 600; color: var(--c-text-muted); margin-bottom: 6px; }
.form-control {
    width: 100%;
    background: var(--c-bg-light);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    color: var(--c-text);
    padding: 10px 12px;
    font-size: .9rem;
    transition: border-color var(--transition);
    min-height: 44px;
}
.form-control:focus { outline: none; border-color: var(--c-accent); }
.form-control::placeholder { color: var(--c-text-muted); opacity: .7; }
textarea.form-control { min-height: 90px; resize: vertical; }
select.form-control { appearance: auto; cursor: pointer; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-section-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--c-accent);
    margin: 24px 0 14px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--c-border);
}

.file-preview {
    margin-top: 8px;
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 200px;
}
.file-preview img { border-radius: var(--radius); border: 1px solid var(--c-border); }

/* ─── Tables ─────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .87rem; }
thead th {
    background: var(--c-primary);
    color: var(--c-text);
    padding: 10px 12px;
    text-align: left;
    font-weight: 600;
    white-space: nowrap;
}
tbody tr { border-bottom: 1px solid var(--c-border); transition: background var(--transition); }
tbody tr:hover { background: rgba(255,255,255,.03); }
tbody td { padding: 10px 12px; vertical-align: middle; }

/* ─── Badges ─────────────────────────────────────────────── */
.badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .3px;
    text-transform: uppercase;
}
.badge-success  { background: rgba(46,125,50,.25);  color: #69f0ae; }
.badge-warning  { background: rgba(245,127,23,.25); color: #ffca28; }
.badge-error    { background: rgba(198,40,40,.25);  color: #ef9a9a; }
.badge-info     { background: rgba(21,101,192,.25); color: #90caf9; }
.badge-muted    { background: rgba(255,255,255,.08); color: var(--c-text-muted); }

/* Staff type badges */
.badge-order_taker    { background: rgba(21,101,192,.3);  color: #90caf9; }
.badge-bowl_preparer  { background: rgba(46,125,50,.3);   color: #69f0ae; }
.badge-bowl_decorator { background: rgba(212,160,23,.3);  color: var(--c-accent); }

/* ─── Order Queue Steps ───────────────────────────────────── */
.step-cell { text-align: center; min-width: 72px; }
.step-done { color: #69f0ae; font-size: 1.1rem; }
.step-pending { color: var(--c-text-muted); font-size: .75rem; text-transform: uppercase; }

/* Blink animation for actionable pending step */
@keyframes stepBlink {
    0%,100% { background: rgba(255,59,48,.18); }
    50%      { background: rgba(255,59,48,.45); }
}
@keyframes stepBlinkPassive {
    0%,100% { background: rgba(255,149,0,.1); }
    50%      { background: rgba(255,149,0,.25); }
}
.blink-active {
    animation: stepBlink 0.8s ease-in-out infinite;
    border-radius: var(--radius);
    padding: 4px 6px;
}
.blink-pending {
    animation: stepBlinkPassive 1.5s ease-in-out infinite;
    border-radius: var(--radius);
    padding: 4px 6px;
}
.step-btn {
    background: var(--c-success);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    padding: 5px 10px;
    font-size: .75rem;
    font-weight: 700;
    cursor: pointer;
    transition: opacity var(--transition);
    white-space: nowrap;
}
.step-btn:hover { opacity: .85; }

/* ─── Pagination ─────────────────────────────────────────── */
.pagination {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: var(--radius);
    font-size: .85rem;
    font-weight: 600;
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    transition: background var(--transition);
}
.pagination a:hover  { background: var(--c-bg-light); color: var(--c-text); }
.pagination .current { background: var(--c-accent); color: var(--c-primary-d); border-color: var(--c-accent); }

/* ─── Flash Messages ─────────────────────────────────────── */
.flash {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: .9rem;
    font-weight: 500;
}
.flash-success { background: rgba(46,125,50,.2);  border: 1px solid var(--c-success); color: #69f0ae; }
.flash-error   { background: rgba(198,40,40,.2);  border: 1px solid var(--c-error);   color: #ef9a9a; }
.flash-warning { background: rgba(245,127,23,.2); border: 1px solid var(--c-warning); color: #ffca28; }
.flash-close   { background: none; border: none; cursor: pointer; color: inherit; font-size: 1rem; }

/* ─── Filters / Search Bar ───────────────────────────────── */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
    align-items: flex-end;
}
.filter-bar .form-control { width: auto; min-width: 140px; }
@media (max-width: 600px) {
    .filter-bar { gap: 8px; }
    .filter-bar .form-control { flex: 1; min-width: 120px; font-size: 0.85rem; padding: 8px; }
}

/* ─── Misc Utilities ─────────────────────────────────────── */
.text-muted   { color: var(--c-text-muted); }
.text-accent  { color: var(--c-accent); }
.text-success { color: #69f0ae; }
.text-error   { color: #ef9a9a; }
.text-center  { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.d-flex { display: flex; }
.gap-2  { gap: 8px; }
.gap-3  { gap: 12px; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }

/* ─── Menu Grid (Staff Order) ────────────────────────────── */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
}
.menu-item {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
}
.menu-item:hover   { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.menu-item.selected { border-color: var(--c-accent); box-shadow: 0 0 0 2px var(--c-accent); }
.menu-item img     { width: 100%; height: 100px; object-fit: cover; }
.menu-item-body    { padding: 8px 10px; }
.menu-item-name    { font-size: .82rem; font-weight: 600; line-height: 1.2; }
.menu-item-price   { font-size: .88rem; color: var(--c-accent); font-weight: 700; margin-top: 2px; }
.menu-item-badge   { position: absolute; top: 6px; right: 6px; }

/* ─── Cart ───────────────────────────────────────────────── */
.cart-panel {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 16px;
    position: sticky;
    top: calc(var(--topnav-h) + 16px);
}
.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid var(--c-border);
    font-size: .88rem;
}
.cart-item:last-child { border-bottom: none; }
.cart-total { font-size: 1.1rem; font-weight: 800; color: var(--c-accent); margin-top: 12px; }

/* ─── Map Preview ────────────────────────────────────────── */
.map-preview {
    background: var(--c-bg-light);
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 10px 14px;
    font-size: .84rem;
    color: var(--c-text-muted);
    margin-top: 8px;
}
.map-preview .coords { color: var(--c-accent); font-weight: 600; font-family: monospace; }

/* ─── Customer Tracking ──────────────────────────────────── */
.tracking-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 24px 0;
}
.track-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    position: relative;
}
.track-step::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 44px;
    width: 2px;
    height: calc(100% - 10px);
    background: var(--c-border);
}
.track-step:last-child::before { display: none; }
.step-circle {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    background: var(--c-surface);
    border: 2px solid var(--c-border);
    transition: all .3s;
}
.step-circle.done    { background: var(--c-success);  border-color: var(--c-success);  color: #fff; }
.step-circle.active  { background: var(--c-accent);   border-color: var(--c-accent);   color: var(--c-primary-d); animation: stepBlink 1s ease infinite; }
.step-circle.pending { color: var(--c-text-muted); }
.step-info h3 { font-size: .95rem; font-weight: 700; }
.step-info p  { font-size: .8rem;  color: var(--c-text-muted); margin-top: 2px; }

/* ─── Order Queue Legend ─────────────────────────────────── */
.queue-legend {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: .78rem;
    color: var(--c-text-muted);
    margin-bottom: 14px;
}
.legend-dot {
    display: inline-block;
    width: 12px; height: 12px;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
}
.blink-active-demo  { background: rgba(255,59,48,.6);  animation: stepBlink 0.8s ease-in-out infinite; }
.blink-passive-demo { background: rgba(255,149,0,.4);  animation: stepBlinkPassive 1.5s ease-in-out infinite; }

/* ─── Create Order Layout ────────────────────────────────── */
.order-create-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 20px;
    align-items: start;
}
@media (max-width: 860px) {
    .order-create-layout { grid-template-columns: 1fr; }
}

.menu-panel { min-width: 0; }

.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 14px;
    scrollbar-width: none;
}
.category-tabs::-webkit-scrollbar { display: none; }

.cat-tab {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    color: var(--c-text-muted);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all .2s;
}
.cat-tab.active,
.cat-tab:hover {
    background: var(--c-accent);
    border-color: var(--c-accent);
    color: var(--c-primary-d);
}

.hidden { display: none !important; }

/* Staff menu cards */
.menu-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: default;
    transition: border-color .15s, transform .15s;
}
.menu-card:hover { border-color: var(--c-accent); transform: translateY(-2px); }
.menu-card-img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    display: block;
}
.menu-card-placeholder {
    width: 100%;
    height: 90px;
    background: var(--c-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}
.menu-card-body { padding: 8px 10px 4px; flex: 1; }
.menu-card-name { font-size: .82rem; font-weight: 600; line-height: 1.3; margin-bottom: 3px; }
.menu-card-price { font-size: .85rem; color: var(--c-accent); font-weight: 700; }
.menu-card .add-to-cart-btn {
    margin: 6px 10px 10px;
    width: calc(100% - 20px);
    justify-content: center;
    font-size: .78rem;
    padding: 6px;
    min-height: 32px;
}

/* Cart Panel */
.cart-panel {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: var(--radius-lg);
    padding: 16px;
    position: sticky;
    top: calc(var(--topnav-h) + 12px);
    max-height: calc(100vh - var(--topnav-h) - 32px);
    overflow-y: auto;
}
.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--c-border);
}
.cart-title { font-weight: 700; font-size: 1rem; color: var(--c-accent); }
.cart-section { margin-bottom: 12px; }

.cart-items { margin: 8px 0; }
.cart-item-row {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 0;
    border-bottom: 1px solid var(--c-border);
    font-size: .85rem;
}
.cart-item-row:last-child { border-bottom: none; }
.cart-item-name { flex: 1; font-weight: 500; }
.cart-item-controls { display: flex; align-items: center; gap: 4px; }
.cart-item-price { font-weight: 700; color: var(--c-accent); min-width: 52px; text-align: right; font-size: .85rem; }

.qty-btn {
    background: var(--c-bg-light);
    border: 1px solid var(--c-border);
    border-radius: 5px;
    width: 26px; height: 26px;
    cursor: pointer;
    font-size: .9rem;
    color: var(--c-text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s;
    padding: 0;
}
.qty-btn:hover { background: var(--c-primary); }
.qty-btn.remove-btn { color: var(--c-error); font-size: .75rem; }
.qty-val { min-width: 22px; text-align: center; font-weight: 700; font-size: .85rem; }

.cart-totals {
    border-top: 1px solid var(--c-border);
    padding-top: 10px;
    margin: 10px 0;
}
.cart-row {
    display: flex;
    justify-content: space-between;
    font-size: .88rem;
    padding: 4px 0;
    color: var(--c-text-muted);
}
.cart-total-row {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text);
    padding-top: 8px;
    border-top: 1px solid var(--c-border);
    margin-top: 4px;
}
.btn-block { width: 100%; justify-content: center; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 600px) {
    .main-content { padding: 16px 12px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .page-header h1 { font-size: 1.15rem; }
    .menu-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
    thead { display: none; }
    tbody tr { 
        display: block; 
        margin-bottom: 20px; 
        border: 1px solid var(--c-border); 
        border-radius: var(--radius-lg); 
        background: var(--c-surface);
        padding: 10px 0;
        box-shadow: var(--shadow);
    }
    tbody td { 
        display: flex; 
        justify-content: space-between; 
        align-items: center;
        padding: 8px 16px; 
        font-size: .88rem; 
        border-bottom: 1px solid rgba(255,255,255,.05);
    }
    tbody td:last-child { border-bottom: none; }
    tbody td::before { 
        content: attr(data-label); 
        font-weight: 700; 
        color: var(--c-accent); 
        margin-right: 15px; 
        font-size: .75rem;
        text-transform: uppercase;
        letter-spacing: .5px;
    }
    tbody td .btn-group { width: 100%; justify-content: space-around; margin-top: 5px; }
}

/* ─── Pending Approvals (staff dashboard) ───────────────── */
.approval-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--c-border);
    transition: opacity .3s;
}
.approval-row:last-child { border-bottom: none; }
.approval-info { flex: 1; min-width: 0; }
.approval-customer { font-weight: 600; font-size: .92rem; }
.approval-items { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
