/* ====================================================== */
/* Smart Inventory — Logistics Check & Projection Screen   */
/* ====================================================== */

/* -------- Dashboard hero -------- */
.lc-dashboard { display: flex; flex-direction: column; gap: 24px; }
.lc-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #06b6d4 100%);
    color: #fff; border-radius: 20px; padding: 32px 36px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, .25);
    position: relative; overflow: hidden;
}
.lc-hero::after {
    content: ''; position: absolute; right: -40px; top: -40px;
    width: 240px; height: 240px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
}
.lc-hero-text { flex: 1; z-index: 1; }
.lc-eyebrow { font-size: 13px; opacity: .9; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.lc-hero h1 { font-size: 32px; font-weight: 700; margin-bottom: 10px; line-height: 1.1; }
.lc-hero p { font-size: 15px; opacity: .92; max-width: 620px; line-height: 1.5; }
.lc-hero .btn-lg { padding: 14px 26px; font-size: 15px; border-radius: 14px; background: #fff; color: #1e3a8a; }
.lc-hero .btn-lg:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.2); }

/* -------- Stats -------- */
.lc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lc-stat-card {
    background: var(--bg-card); border-radius: 16px; padding: 20px;
    display: flex; align-items: center; gap: 14px; position: relative; overflow: hidden;
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s;
}
.lc-stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.lc-stat-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff;
    flex-shrink: 0;
}
.lc-stat-blue .lc-stat-icon  { background: linear-gradient(135deg,#3b82f6,#2563eb); }
.lc-stat-purple .lc-stat-icon{ background: linear-gradient(135deg,#a855f7,#8b5cf6); }
.lc-stat-green .lc-stat-icon { background: linear-gradient(135deg,#22c55e,#10b981); }
.lc-stat-gold .lc-stat-icon  { background: linear-gradient(135deg,#fbbf24,#f59e0b); }
.lc-stat-meta { flex: 1; }
.lc-stat-value { font-size: 26px; font-weight: 700; color: var(--text-primary); line-height: 1; }
.lc-stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; margin-top: 4px; }
.lc-stat-bar { position: absolute; bottom: 0; left: 0; height: 3px; width: 100%; background: var(--border-subtle); }
.lc-stat-bar span { display: block; height: 100%; background: linear-gradient(90deg,#fbbf24,#f59e0b); transition: width .6s; }

/* -------- Session grid -------- */
.lc-session-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.lc-session-card {
    background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
    padding: 18px; cursor: pointer; transition: transform .2s, box-shadow .2s, border-color .2s;
    display: flex; flex-direction: column; gap: 12px;
}
.lc-session-card:hover { transform: translateY(-2px); border-color: var(--accent-blue); box-shadow: 0 8px 24px rgba(37,99,235,.12); }
.lc-session-card.closed { opacity: .65; }
.lc-session-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.lc-session-ref { font-weight: 700; font-size: 16px; color: var(--text-primary); }
.lc-session-name { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.lc-badge { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.lc-badge-open { background: #dcfce7; color: #166534; }
.lc-badge-closed { background: #f1f5f9; color: #475569; }
.lc-session-meta { display: flex; gap: 12px; font-size: 12px; color: var(--text-muted); flex-wrap: wrap; }
.lc-session-meta i { margin-right: 4px; opacity: .7; }
.lc-session-progress { position: relative; height: 8px; background: var(--bg-secondary); border-radius: 4px; overflow: hidden; }
.lc-session-progress-fill { position: absolute; inset: 0 auto 0 0; background: linear-gradient(90deg, #10b981, #06b6d4); transition: width .6s; }
.lc-session-progress-text { position: absolute; right: 8px; top: -18px; font-size: 11px; font-weight: 600; color: var(--text-secondary); }

/* -------- Session detail -------- */
.lc-session-page { display: flex; flex-direction: column; gap: 20px; }
.lc-toolbar {
    display: flex; align-items: center; gap: 16px;
    background: var(--bg-card); padding: 14px 18px; border-radius: 12px; border: 1px solid var(--border);
}
.lc-toolbar-title { flex: 1; }
.lc-toolbar-title h2 { font-size: 22px; font-weight: 700; line-height: 1; }
.lc-toolbar-title p { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.lc-toolbar-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.lc-progress-banner {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5); border-radius: 14px; padding: 18px 22px;
    display: flex; align-items: center; gap: 24px; border: 1px solid #a7f3d0;
}
[data-theme="dark"] .lc-progress-banner { background: linear-gradient(135deg, rgba(16,185,129,.12), rgba(6,182,212,.12)); border-color: rgba(16,185,129,.3); }
.lc-progress-info { flex: 1; }
.lc-progress-label { font-size: 12px; color: #047857; text-transform: uppercase; letter-spacing: .5px; }
[data-theme="dark"] .lc-progress-label { color: #6ee7b7; }
.lc-progress-numbers { font-size: 22px; font-weight: 700; color: #064e3b; }
[data-theme="dark"] .lc-progress-numbers { color: #ecfdf5; }
.lc-progress-bar-wrap { position: relative; flex: 2; height: 18px; background: rgba(0,0,0,.06); border-radius: 9px; overflow: hidden; }
.lc-progress-bar-wrap.small { height: 8px; flex: 1; }
.lc-progress-bar-fill { position: absolute; inset: 0 auto 0 0; background: linear-gradient(90deg,#10b981,#06b6d4); transition: width .6s; }
.lc-progress-bar-wrap span { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); font-size: 11px; font-weight: 700; color: #fff; mix-blend-mode: difference; }

.lc-upload-card {
    background: var(--bg-card); border: 2px dashed var(--accent-blue); border-radius: 14px;
    padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.lc-upload-card h3 { font-size: 17px; margin-bottom: 4px; }
.lc-upload-card p { font-size: 13px; color: var(--text-muted); }

/* -------- Doc + lines -------- */
.lc-docs-grid { display: flex; flex-direction: column; gap: 18px; }
.lc-doc-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.lc-doc-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.lc-doc-meta { display: flex; align-items: center; gap: 12px; }
.lc-doc-title { font-size: 17px; font-weight: 700; color: var(--text-primary); }
.lc-doc-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.lc-tas-pill {
    padding: 8px 14px; border-radius: 10px; color: #fff; font-weight: 700; font-size: 14px;
    box-shadow: 0 4px 10px rgba(59,130,246,.3);
}
.lc-doc-stats { display: flex; gap: 6px; flex-wrap: wrap; }
.lc-chip { padding: 4px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.lc-chip-green  { background: #dcfce7; color: #166534; }
.lc-chip-orange { background: #ffedd5; color: #9a3412; }
.lc-chip-grey   { background: #f1f5f9; color: #475569; }
[data-theme="dark"] .lc-chip-grey { background: rgba(255,255,255,.08); color: #cbd5e1; }

.lc-lines-table { margin-top: 12px; overflow-x: auto; }
.lc-lines-table table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 13px; }
.lc-lines-table th { text-align: left; padding: 10px 8px; color: var(--text-muted); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: .5px; border-bottom: 1px solid var(--border); }
.lc-lines-table td { padding: 8px; border-bottom: 1px solid var(--border-subtle); }
.lc-line-completed { background: rgba(16,185,129,.07); }
.lc-line-partial   { background: rgba(245,158,11,.07); }
.lc-edit { background: transparent; border: 1px solid transparent; padding: 5px 7px; border-radius: 6px; font-size: 13px; width: 100%; color: var(--text-primary); }
.lc-edit:focus { background: var(--bg-secondary); border-color: var(--accent-blue); outline: none; }
.lc-edit-num { max-width: 80px; }
.lc-status-pill { padding: 3px 9px; border-radius: 12px; font-size: 11px; font-weight: 600; white-space: nowrap; }
.lc-st-grey   { background: #f1f5f9; color: #475569; }
.lc-st-orange { background: #fef3c7; color: #92400e; }
.lc-st-green  { background: #d1fae5; color: #065f46; }
[data-theme="dark"] .lc-st-grey { background: rgba(255,255,255,.08); color: #cbd5e1; }

.btn-icon-sm {
    width: 30px; height: 30px; border: 1px solid var(--border); background: var(--bg-card);
    border-radius: 8px; cursor: pointer; margin: 0 2px; color: var(--text-secondary);
    display: inline-flex; align-items: center; justify-content: center; transition: var(--transition);
}
.btn-icon-sm:hover { background: var(--bg-secondary); }
.btn-icon-sm.danger:hover { background: #fee2e2; color: #b91c1c; border-color: #fca5a5; }
.btn-icon-sm.warn:hover  { background: #ede9fe; color: #6d28d9; border-color: #c4b5fd; }

/* -------- Upload progress -------- */
.lc-upload-progress {
    display: flex; align-items: center; gap: 14px;
    background: rgba(59,130,246,.07); border: 1px solid rgba(59,130,246,.2);
    padding: 14px 18px; border-radius: 12px; margin-top: 10px;
}
.lc-up-spinner {
    width: 32px; height: 32px; border: 3px solid rgba(59,130,246,.2); border-top-color: var(--accent-blue);
    border-radius: 50%; animation: lc-spin 1s linear infinite; flex-shrink: 0;
}
.lc-up-spinner.small { width: 18px; height: 18px; border-width: 2px; display: inline-block; vertical-align: middle; }
@keyframes lc-spin { to { transform: rotate(360deg); } }

/* -------- Scan modal -------- */
.lc-scan-modal { width: 95%; }
.lc-scan-tabs { display: flex; gap: 6px; border-bottom: 2px solid var(--border); margin-bottom: 18px; }
.lc-tab {
    flex: 1; padding: 12px 14px; border: none; background: transparent; cursor: pointer;
    font-size: 14px; font-weight: 600; color: var(--text-muted); border-bottom: 3px solid transparent;
    transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px;
}
.lc-tab:hover { color: var(--text-primary); background: var(--bg-secondary); }
.lc-tab.active { color: var(--accent-blue); border-bottom-color: var(--accent-blue); background: var(--bg-secondary); }
.lc-tab-pane { display: none; }
.lc-tab-pane.active { display: block; }

.lc-scan-input-wrap { display: flex; gap: 10px; }
.lc-big-input { font-size: 18px !important; padding: 16px 18px !important; flex: 1; font-family: monospace; letter-spacing: 1px; }
.lc-big-input:focus { box-shadow: 0 0 0 4px rgba(59,130,246,.15); }

.lc-cam-reader { width: 100%; min-height: 280px; background: #000; border-radius: 12px; overflow: hidden; }
.lc-cam-reader video { width: 100% !important; }
.lc-cam-controls { display: flex; gap: 10px; margin-top: 12px; justify-content: center; }

.lc-photo-zone {
    border: 2px dashed var(--border-focus); border-radius: 14px; padding: 36px 20px;
    text-align: center; cursor: pointer; transition: var(--transition); background: var(--bg-secondary);
}
.lc-photo-zone:hover { border-color: var(--accent-blue); background: rgba(59,130,246,.05); }
.lc-photo-zone i { font-size: 42px; color: var(--accent-blue); margin-bottom: 10px; }
.lc-photo-zone p { font-weight: 600; }
.lc-photo-zone small { color: var(--text-muted); font-size: 12px; display: block; margin-top: 4px; }
.lc-photo-result { margin-top: 12px; }
.lc-photo-text { background: var(--bg-secondary); padding: 12px 14px; border-radius: 10px; font-size: 13px; line-height: 1.5; }
.lc-photo-text.error { background: #fee2e2; color: #991b1b; }
.lc-validate-row { display: flex; gap: 8px; margin-top: 10px; }
.lc-validate-row input { flex: 1; }

/* -------- Scan result card -------- */
.lc-scan-result { margin-top: 18px; }
.lc-result-card {
    border-radius: 14px; padding: 18px 20px; display: flex; flex-direction: column; gap: 12px;
    animation: lc-pop .35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes lc-pop { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lc-result-success { background: linear-gradient(135deg,#d1fae5,#a7f3d0); border: 1px solid #10b981; }
.lc-result-partial { background: linear-gradient(135deg,#fef3c7,#fde68a); border: 1px solid #f59e0b; }
.lc-result-error   { background: linear-gradient(135deg,#fee2e2,#fecaca); border: 1px solid #ef4444; display: flex; flex-direction: row; align-items: center; gap: 14px; }
.lc-result-info    { background: linear-gradient(135deg,#dbeafe,#bfdbfe); border: 1px solid #3b82f6; display: flex; align-items: center; gap: 14px; }
[data-theme="dark"] .lc-result-success { background: rgba(16,185,129,.15); }
[data-theme="dark"] .lc-result-partial { background: rgba(245,158,11,.15); }
[data-theme="dark"] .lc-result-error   { background: rgba(239,68,68,.15); }
[data-theme="dark"] .lc-result-info    { background: rgba(59,130,246,.15); }
.lc-result-head { display: flex; gap: 14px; align-items: center; }
.lc-result-head i { font-size: 32px; }
.lc-result-success .lc-result-head i { color: #047857; }
.lc-result-partial .lc-result-head i { color: #b45309; }
.lc-result-title { font-size: 17px; font-weight: 700; color: #0f172a; }
.lc-score { font-size: 11px; padding: 3px 9px; background: rgba(0,0,0,.1); border-radius: 12px; margin-left: 6px; }
.lc-result-sub { font-size: 12px; color: #475569; margin-top: 2px; }
.lc-result-desc { font-size: 16px; font-weight: 600; color: #0f172a; }
.lc-result-ref { font-size: 13px; color: #475569; font-family: monospace; }
.lc-qty-row { display: flex; gap: 18px; padding: 10px 14px; background: rgba(255,255,255,.6); border-radius: 10px; }
.lc-qty-row div { flex: 1; }
.lc-qty-row span { display: block; font-size: 11px; color: #64748b; text-transform: uppercase; }
.lc-qty-row strong { font-size: 20px; color: #0f172a; }
.lc-remain { color: #b91c1c !important; }
[data-theme="dark"] .lc-qty-row { background: rgba(0,0,0,.25); }
[data-theme="dark"] .lc-qty-row strong { color: #f1f5f9; }

/* ====================================================== */
/* PROJECTION SCREEN — Live for warehouse big screen       */
/* ====================================================== */
.projection-page {
    background: #0a0e1a; color: #f1f5f9; min-height: 100vh;
    font-family: 'Outfit', sans-serif;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(16,185,129,.10), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59,130,246,.12), transparent 40%);
}
.proj-screen { padding: 32px 48px; display: flex; flex-direction: column; gap: 28px; min-height: 100vh; }
.proj-header { display: flex; justify-content: space-between; align-items: flex-start; }
.proj-eyebrow { color: #6ee7b7; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.proj-title { font-size: 48px; font-weight: 800; line-height: 1; background: linear-gradient(135deg,#fff,#a5b4fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.proj-sub { color: #94a3b8; font-size: 18px; margin-top: 4px; }
.proj-clock { text-align: right; }
.proj-time { font-size: 22px; font-weight: 600; color: #cbd5e1; font-variant-numeric: tabular-nums; }
.proj-live { margin-top: 8px; display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(220,38,38,.18); border: 1px solid rgba(220,38,38,.4); border-radius: 30px; color: #fca5a5; font-weight: 700; font-size: 12px; letter-spacing: 1.5px; }
.proj-dot { width: 10px; height: 10px; background: #ef4444; border-radius: 50%; animation: proj-pulse 1.2s infinite; }
@keyframes proj-pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.5); opacity: .5; } }

.proj-main-progress { display: grid; grid-template-columns: 320px 1fr; gap: 32px; align-items: center; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 24px; padding: 28px; }
.proj-ring { position: relative; width: 280px; height: 280px; }
.proj-ring svg { width: 100%; height: 100%; }
.proj-ring-text { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.proj-pct { font-size: 72px; font-weight: 800; color: #fff; line-height: 1; }
.proj-pct small { font-size: 28px; opacity: .6; }
.proj-ring-label { color: #94a3b8; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-top: 8px; }

.proj-kpis { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.proj-kpi { padding: 22px; border-radius: 18px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); position: relative; overflow: hidden; }
.proj-kpi::after { content:''; position:absolute; top:0; left:0; width:4px; height:100%; }
.proj-kpi-green::after  { background: #10b981; }
.proj-kpi-blue::after   { background: #3b82f6; }
.proj-kpi-purple::after { background: #a855f7; }
.proj-kpi-gold::after   { background: #f59e0b; }
.proj-kpi-val { font-size: 44px; font-weight: 800; line-height: 1; color: #fff; }
.proj-kpi-val small { font-size: 20px; color: #94a3b8; }
.proj-kpi-lab { font-size: 13px; color: #94a3b8; text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; }

.proj-body { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; flex: 1; }
.proj-tas h3, .proj-feed h3 { font-size: 14px; color: #94a3b8; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px; }
.proj-tas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 14px; }
.proj-tas-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 16px; padding: 18px; transition: transform .25s, border-color .25s; }
.proj-tas-card:hover { transform: translateY(-3px); border-color: rgba(16,185,129,.3); }
.proj-tas-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.proj-tas-pill { background: linear-gradient(135deg,#06b6d4,#3b82f6); color: #fff; padding: 8px 14px; border-radius: 10px; font-weight: 700; font-size: 14px; }
.proj-tas-info { flex: 1; min-width: 0; }
.proj-tas-po { font-size: 17px; font-weight: 700; color: #fff; }
.proj-tas-supplier { font-size: 12px; color: #94a3b8; }
.proj-tas-pct { font-size: 22px; font-weight: 800; color: #6ee7b7; }
.proj-tas-bar { height: 10px; background: rgba(255,255,255,.06); border-radius: 5px; overflow: hidden; }
.proj-tas-fill { height: 100%; background: linear-gradient(90deg,#10b981,#06b6d4); transition: width 1s; box-shadow: 0 0 12px rgba(16,185,129,.5); }
.proj-tas-stats { display: flex; justify-content: space-between; margin-top: 8px; font-size: 12px; color: #94a3b8; }

.proj-feed { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06); border-radius: 18px; padding: 22px; }
.proj-feed.flash { animation: proj-flash .6s; }
@keyframes proj-flash { 0% { background: rgba(16,185,129,.2); } 100% { background: rgba(255,255,255,.03); } }
.proj-feed ul { list-style: none; padding: 0; margin: 0; max-height: 480px; overflow-y: auto; }
.proj-feed li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.05); animation: proj-slidein .4s; }
@keyframes proj-slidein { from { transform: translateX(20px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.proj-feed-time { font-size: 11px; color: #6b7280; font-variant-numeric: tabular-nums; }
.proj-feed-main { display: flex; align-items: center; gap: 8px; margin: 4px 0; flex-wrap: wrap; }
.proj-feed-tas { background: rgba(59,130,246,.2); color: #93c5fd; padding: 2px 8px; border-radius: 6px; font-size: 11px; font-weight: 600; }
.proj-feed-main strong { color: #f1f5f9; font-size: 14px; flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.proj-feed-qty { color: #34d399; font-weight: 700; font-size: 14px; }
.proj-feed-user { font-size: 11px; color: #64748b; }
.proj-feed-empty { text-align: center; padding: 40px 0; color: #475569; font-style: italic; }

.proj-empty { padding: 40px 20px; text-align: center; color: #475569; }
.proj-footer { display: flex; justify-content: space-between; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.06); color: #64748b; font-size: 12px; }
.proj-error { display: flex; align-items: center; justify-content: center; min-height: 100vh; color: #fca5a5; font-size: 28px; gap: 14px; }

/* Responsive */
@media (max-width: 1100px) {
    .lc-stats { grid-template-columns: repeat(2, 1fr); }
    .proj-main-progress { grid-template-columns: 1fr; text-align: center; }
    .proj-ring { margin: 0 auto; }
    .proj-body { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .lc-hero { flex-direction: column; align-items: flex-start; }
    .lc-stats { grid-template-columns: 1fr 1fr; }
    .proj-title { font-size: 32px; }
    .proj-pct { font-size: 56px; }
    .proj-kpis { grid-template-columns: 1fr; }
    .proj-screen { padding: 18px; }
}

/* ====== Barcode/QR Scanner button (inline in search input) ====== */
.lc-scan-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px; height: 32px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #7c3aed, #4c1d95);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform .15s, box-shadow .15s;
    z-index: 2;
}
.lc-scan-btn:hover {
    transform: translateY(-50%) scale(1.07);
    box-shadow: 0 4px 12px rgba(124,58,237,.4);
}
.modal-scanner #qr-reader {
    border-radius: 6px;
    overflow: hidden;
}
.modal-scanner #qr-reader video {
    max-width: 100%;
    border-radius: 6px;
}
.modal-scanner #qr-reader__dashboard_section,
.modal-scanner #qr-reader__header_message {
    display: none !important;
}
