/* ============================================================
   Amazon Shipping US — Planning Automation
   Clean FPA Dashboard Theme
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --bg: #f8f9fb;
    --bg-subtle: #f1f3f5;
    --text: #1d2939;
    --text-secondary: #475467;
    --text-muted: #98a2b3;
    --card-bg: #ffffff;
    --border: #e4e7ec;
    --border-light: #eaecf0;
    --accent: #155eef;
    --accent-hover: #1249c4;
    --accent-light: rgba(21,94,239,0.06);
    --success: #12b76a;
    --danger: #f04438;
    --warning: #f79009;
    --table-bg: #ffffff;
    --table-alt: #f9fafb;
    --table-header: #f2f4f7;
    --table-header-text: #344054;
    --shadow-sm: 0 1px 2px rgba(16,24,40,0.05);
    --shadow-md: 0 4px 8px -2px rgba(16,24,40,0.1), 0 2px 4px -2px rgba(16,24,40,0.06);
    --shadow-lg: 0 12px 16px -4px rgba(16,24,40,0.08), 0 4px 6px -2px rgba(16,24,40,0.03);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    font-size: 13px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* ---- Login ---- */
.screen { min-height: 100vh; }

#login-screen {
    display: flex; align-items: center; justify-content: center;
    background: var(--bg);
}

.login-card {
    background: var(--card-bg); border-radius: var(--radius-lg);
    padding: 48px; width: 400px; text-align: center;
    box-shadow: var(--shadow-lg); border: 1px solid var(--border-light);
}
.login-card h1 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 4px; letter-spacing: -0.3px; }
.login-card .subtitle { color: var(--text-muted); margin-bottom: 28px; font-size: 13px; }
.login-form { display: flex; flex-direction: column; gap: 12px; }
.login-form label { text-align: left; font-weight: 500; color: var(--text-secondary); font-size: 13px; }
.login-form input {
    padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-md);
    font-size: 14px; font-family: var(--font); outline: none; transition: all 0.15s;
    background: #fff;
}
.login-form input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.error-msg { color: var(--danger); font-size: 12px; margin-top: 4px; font-weight: 500; }

/* ---- Buttons ---- */
.btn {
    padding: 8px 16px; border: none; border-radius: var(--radius-sm);
    cursor: pointer; font-size: 13px; font-weight: 500; font-family: var(--font);
    transition: all 0.15s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); box-shadow: var(--shadow-sm); }
.btn-secondary { background: #fff; color: var(--text-secondary); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg-subtle); }
.btn-sm { padding: 6px 12px; font-size: 12px; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #d92d20; }

/* ---- Top Nav ---- */
.top-nav {
    display: flex; flex-wrap: wrap; align-items: center;
    background: #161e2e; color: #fff;
    border-bottom: none;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.nav-left { display: flex; align-items: center; gap: 12px; padding: 10px 24px; }
.nav-left h2 { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -0.3px; }
.nav-badge { background: var(--accent); color: #fff; padding: 3px 10px; border-radius: 4px; font-size: 11px; font-weight: 600; }
.nav-tabs { display: flex; gap: 0; padding: 0 24px; flex: 1; }
.nav-tab {
    padding: 14px 18px; border: none; background: none; color: rgba(255,255,255,0.6);
    cursor: pointer; font-size: 13px; font-weight: 500; font-family: var(--font);
    border-bottom: 2px solid transparent; transition: all 0.15s;
}
.nav-tab:hover { color: rgba(255,255,255,0.85); }
.nav-tab.active { color: #fff; border-bottom-color: #fff; font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 10px; padding-right: 24px; font-size: 12px; color: rgba(255,255,255,0.7); }
.role-badge {
    padding: 2px 8px; border-radius: 4px; font-size: 10px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px;
}
.role-badge { background: rgba(18,183,106,0.2); color: #6ee7b7; }
.role-badge.admin { background: rgba(240,68,56,0.2); color: #fca5a5; }
.role-badge.viewer { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); }

/* ---- Tab Content ---- */
.tab-content { padding: 20px 24px; display: none; background: var(--bg); min-height: calc(100vh - 52px); }
.tab-content.active { display: block; }

/* ---- Toolbars ---- */
.input-toolbar, .pnl-toolbar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px; gap: 12px; padding: 14px 20px;
    background: var(--card-bg); border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.toolbar-left, .toolbar-right { display: flex; align-items: center; gap: 8px; }
.toolbar-left label { font-weight: 500; font-size: 12px; color: var(--text-secondary); }
.toolbar-left select, .toolbar-right select {
    padding: 6px 10px; border: 1px solid var(--border); border-radius: var(--radius-sm);
    font-size: 12px; font-family: var(--font); background: #fff; color: var(--text);
    cursor: pointer; outline: none;
}
.toolbar-left select:focus, .toolbar-right select:focus { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-light); }

/* ---- Banner ---- */
.banner { padding: 10px 16px; border-radius: var(--radius-sm); margin-bottom: 12px; font-weight: 500; font-size: 13px; }
.banner-warning { background: #fffaeb; color: #93370d; border: 1px solid #fedf89; }

/* ---- Grid (Spreadsheet) ---- */
#grid-container { overflow-x: auto; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border); background: #fff; }

.grid-table { border-collapse: collapse; width: 100%; font-size: 13px; font-variant-numeric: tabular-nums; }
.grid-table th {
    background: #f8fafc; color: var(--table-header-text);
    padding: 11px 14px; text-align: center; font-weight: 600; font-size: 12px;
    position: sticky; top: 0; z-index: 10; white-space: nowrap;
    border-bottom: 2px solid var(--border); letter-spacing: 0.2px;
}
.grid-table th:first-child, .grid-table th:nth-child(2), .grid-table th:nth-child(3) {
    text-align: left; position: sticky; z-index: 11;
}
.grid-table th:first-child { left: 0; }
.grid-table th:nth-child(2) { left: 200px; }
.grid-table th:nth-child(3) { left: 260px; }

.grid-table td {
    padding: 8px 12px; border-bottom: 1px solid #f1f5f9;
    text-align: right; white-space: nowrap; transition: background 0.1s;
    font-size: 13px;
}
.grid-table td:first-child {
    text-align: left; font-weight: 500; background: var(--table-alt);
    position: sticky; left: 0; z-index: 5; width: 28px; min-width: 28px; max-width: 28px; padding: 4px 6px;
    color: var(--text-muted); font-size: 10px;
}
.grid-table td:nth-child(2) {
    text-align: left; background: var(--table-alt); position: sticky; left: 200px; z-index: 5;
    min-width: 60px; font-size: 12px; color: var(--text);
}
.grid-table td:nth-child(3) {
    text-align: left; background: var(--table-alt); position: sticky; left: 260px; z-index: 5;
    min-width: 140px; font-size: 12px; color: var(--text);
}
.grid-table tbody tr:hover td { background: var(--accent-light); }
.grid-table tbody tr:hover td:first-child,
.grid-table tbody tr:hover td:nth-child(2) { background: #eef2ff; }

/* Cell states */
.cell-input {
    width: 90px; padding: 5px 8px; border: 1px solid transparent; border-radius: 4px;
    text-align: right; font-size: 13px; font-family: var(--font); font-variant-numeric: tabular-nums;
    background: transparent; color: var(--text); outline: none; transition: all 0.15s;
}
.cell-input:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 2px var(--accent-light); }
.cell-explicit { background: #fff; color: var(--text); border-color: #e2e8f0; }
.cell-inherited { background: transparent; color: var(--text-secondary); }
.cell-changed { background: #fffbeb; color: var(--text); border-color: #fde68a; }
.cell-error { border-color: var(--danger) !important; background: #fef2f2; }
.cell-readonly { background: transparent; color: var(--text-muted); cursor: default; }

/* ---- Adjustment Rows (Cost Out & Top Down) ---- */
.row-costout { background: #e8f5e9; }
.row-costout td { border-top: none; }
.row-topdown { background: #e3f2fd; }
.row-topdown td { border-top: none; }
.row-computed { background: #f5f5f5; }
.row-computed td { border-top: none; }

/* ---- Feedback ---- */
.feedback { margin-top: 12px; padding: 10px 16px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 500; }
.feedback-success { background: #ecfdf3; color: #027a48; border: 1px solid #a6f4c5; }
.feedback-error { background: #fef3f2; color: #b42318; border: 1px solid #fecdca; }

/* ---- Admin Panel ---- */
.admin-tabs {
    display: flex; gap: 0; border-bottom: 2px solid var(--border-light);
    margin-bottom: 0; padding: 0 24px; background: #fff;
}
.admin-tab {
    padding: 12px 18px; border: none; background: none; cursor: pointer;
    font-size: 13px; font-weight: 500; color: var(--text-muted);
    border-bottom: 2px solid transparent; margin-bottom: -2px;
    transition: all 0.15s; font-family: var(--font);
}
.admin-tab:hover { color: var(--text); background: var(--bg-subtle); }
.admin-tab.active { color: var(--accent); border-bottom-color: var(--accent); font-weight: 600; background: none; }
.admin-tab-content { display: none; padding: 24px; }
.admin-tab-content.active { display: block; }
.admin-hint { color: var(--text-muted); font-size: 13px; margin: 4px 0 20px 0; line-height: 1.5; }

.admin-card {
    background: #122240; border-radius: var(--radius-lg); padding: 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2), 0 0 0 1px rgba(100,160,255,0.08);
    border: 1px solid rgba(100,160,255,0.12);
    transition: transform 0.2s, box-shadow 0.2s;
}
.admin-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(100,160,255,0.15);
}
.admin-card h3 { font-size: 16px; font-weight: 700; color: #f1f5f9; margin: 0 0 6px 0; letter-spacing: -0.2px; }
.admin-card .admin-hint { color: #94a3b8; }
.admin-card .form-group { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.admin-card .form-group label { font-size: 13px; font-weight: 500; color: #94a3b8; }
.admin-card .form-group select,
.admin-card .form-group input[type="text"],
.admin-card .form-group input[type="number"],
.admin-card .form-group input[type="datetime-local"] {
    padding: 9px 14px; border: 1px solid rgba(100,160,255,0.15); border-radius: var(--radius-sm);
    font-size: 13px; background: #0a1628; font-family: var(--font); color: #e2e8f0;
    transition: all 0.15s;
}
.admin-card .form-group select:focus,
.admin-card .form-group input:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.2); background: #081222; }
.admin-card .form-group select { cursor: pointer; }
.admin-card .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none; color: #fff; font-weight: 600; padding: 9px 18px;
    border-radius: var(--radius-sm); cursor: pointer; font-size: 13px;
    box-shadow: 0 2px 8px rgba(59,130,246,0.3);
    transition: all 0.15s;
}
.admin-card .btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 4px 12px rgba(59,130,246,0.4);
    transform: translateY(-1px);
}
.admin-card .btn-secondary {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    color: #e2e8f0; font-weight: 500; padding: 9px 18px;
    border-radius: var(--radius-sm); cursor: pointer; font-size: 13px;
    transition: all 0.15s;
}
.admin-card .btn-secondary:hover {
    background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2);
}
.admin-card table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 13px; }
.admin-card table thead th {
    text-align: left; padding: 10px 12px; background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.08); color: #94a3b8;
    font-weight: 600; font-size: 12px;
}
.admin-card table tbody td { padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,0.06); color: #cbd5e1; }
.admin-card table tbody tr:hover { background: rgba(59,130,246,0.08); }
.admin-card hr { border-color: rgba(255,255,255,0.08) !important; }
.admin-card p { color: #94a3b8; }

/* Admin form table layout */
.admin-form-table { border-collapse: collapse; }
.admin-form-table td { padding: 10px 12px 10px 0; vertical-align: middle; }
.admin-form-table .admin-form-label { font-size: 13px; font-weight: 500; color: #94a3b8; white-space: nowrap; width: 100px; }
.admin-form-table select {
    padding: 9px 14px; border: 1px solid rgba(100,160,255,0.15); border-radius: var(--radius-sm);
    font-size: 13px; background: #0a1628; font-family: var(--font); color: #e2e8f0;
    cursor: pointer; transition: all 0.15s;
}
.admin-form-table select:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.2); }

/* Admin tab background */
#tab-admin { background: #0c1e3a; }
#tab-admin > div { max-width: 960px; }

.admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.form-group label { font-weight: 500; font-size: 12px; min-width: 70px; color: var(--text-secondary); }
.form-group select, .form-group input {
    padding: 6px 10px; border: 1px solid var(--border); border-radius: var(--radius-sm);
    font-size: 12px; font-family: var(--font); background: #fff;
}

/* ---- Custom Modal ---- */
.modal-overlay { display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.4); z-index:9999; align-items:center; justify-content:center; backdrop-filter:blur(3px); }
.modal-overlay.active { display:flex; }
.modal-box { background:#fff; border-radius:var(--radius-lg); padding:32px; max-width:460px; width:90%; box-shadow:var(--shadow-lg); animation:modalIn 0.2s ease; }
@keyframes modalIn { from { transform:scale(0.96); opacity:0; } to { transform:scale(1); opacity:1; } }
.modal-box h3 { margin:0 0 12px 0; font-size:17px; color:var(--text); font-weight:700; }
.modal-box p { margin:0 0 8px 0; font-size:14px; color:var(--text-secondary); line-height:1.5; }
.modal-box .modal-warning { background:#fffaeb; border:1px solid #fedf89; border-radius:var(--radius-sm); padding:12px; margin:16px 0; font-size:13px; color:#93370d; }
.modal-box .modal-actions { display:flex; gap:10px; justify-content:flex-end; margin-top:24px; }
.modal-box .btn-cancel { padding:8px 18px; border:1px solid var(--border); border-radius:var(--radius-sm); background:#fff; cursor:pointer; font-size:13px; font-weight:500; font-family:var(--font); }
.modal-box .btn-cancel:hover { background:var(--bg-subtle); }
.modal-box .btn-confirm-danger { padding:8px 18px; border:none; border-radius:var(--radius-sm); background:var(--danger); color:#fff; cursor:pointer; font-size:13px; font-weight:600; font-family:var(--font); }
.modal-box .btn-confirm-danger:hover { background:#d92d20; }

/* ---- Multi-Select Dropdown ---- */
.ds-multiselect { position: relative; display: inline-block; }
.ds-multiselect-btn { padding: 6px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: #fff; cursor: pointer; font-size: 13px; min-width: 180px; text-align: left; font-family: var(--font); }
.ds-multiselect-btn:hover { border-color: var(--accent); }
.ds-multiselect-dropdown { position: absolute; top: 100%; left: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-md); z-index: 1000; min-width: 220px; max-height: 300px; overflow-y: auto; padding: 6px 0; margin-top: 4px; }
.ds-multiselect-dropdown label { display: flex; align-items: center; gap: 8px; padding: 7px 14px; font-size: 13px; cursor: pointer; }
.ds-multiselect-dropdown label:hover { background: var(--accent-light); }
.ds-multiselect-dropdown input[type="checkbox"] { accent-color: var(--accent); }

/* ---- Status Dashboard ---- */
.status-table {
    width: 100%; border-collapse: collapse; background: var(--card-bg);
    border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}
.status-table th {
    background: var(--table-header); color: var(--table-header-text);
    padding: 12px 16px; text-align: left; font-size: 12px; font-weight: 600;
    border-bottom: 1px solid var(--border);
}
.status-table td { padding: 12px 16px; border-bottom: 1px solid var(--border-light); font-size: 13px; }
.status-submitted { color: var(--success); font-weight: 600; }
.status-pending { color: var(--warning); font-weight: 600; }

/* ---- Users & Overrides Tables ---- */
.users-table, .overrides-table { width: 100%; border-collapse: collapse; font-size: 12px; margin-top: 12px; }
.users-table th, .overrides-table th { background: var(--table-alt); padding: 8px 10px; text-align: left; font-weight: 600; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
.users-table td, .overrides-table td { padding: 8px 10px; border-bottom: 1px solid var(--border-light); }

/* ---- Fill Forward Prompt ---- */
.fill-forward-prompt {
    display: flex; align-items: center; gap: 10px; padding: 10px 16px; margin-bottom: 10px;
    background: var(--accent-light); border: 1px solid rgba(21,94,239,0.15);
    border-radius: var(--radius-sm); font-size: 13px; animation: slideDown 0.15s ease-out;
}
.fill-forward-prompt strong { color: var(--accent); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ---- P&L View ---- */
#pnl-container { overflow: auto; max-height: calc(100vh - 220px); position: relative; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); }
#pnl-container .grid-table { table-layout: auto; width: auto; }
#pnl-container .grid-table td, #pnl-container .grid-table th { white-space: nowrap; padding: 6px 12px; min-width: 80px; }
#pnl-container .grid-table td:nth-child(2) { min-width: auto; max-width: none; }
#pnl-container .grid-table thead th { position: sticky; top: 0; z-index: 20; }
#pnl-container .grid-table td:first-child, #pnl-container .grid-table th:first-child { position: sticky; left: 0; z-index: 15; }
#pnl-container .grid-table td:nth-child(2), #pnl-container .grid-table th:nth-child(2) { position: sticky; left: 28px; z-index: 15; }
#pnl-container .grid-table thead th:first-child, #pnl-container .grid-table thead th:nth-child(2) { z-index: 25; }

/* ---- Presentation Mode ---- */
body.presentation .top-nav { display: none; }
body.presentation .pnl-toolbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: #fff; padding: 8px 16px; box-shadow: var(--shadow-md);
    opacity: 0; transition: opacity 0.2s; border-radius: 0;
}
body.presentation .pnl-toolbar:hover { opacity: 1; }
body.presentation #tab-pnl { padding: 8px 24px; display: flex; flex-direction: column; justify-content: center; min-height: 100vh; }
body.presentation #pnl-container { font-size: 11px; }
body.presentation .grid-table td, body.presentation .grid-table th { padding: 3px 8px; }

/* ---- KPI Summary Cards ---- */
.kpi-strip { display: flex; gap: 16px; margin-bottom: 16px; flex-wrap: wrap; }
.kpi-card {
    flex: 1; min-width: 160px; padding: 16px 20px;
    background: var(--card-bg); border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
    border-left: 3px solid var(--accent); transition: all 0.15s;
}
.kpi-card:hover { box-shadow: var(--shadow-md); }
.kpi-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.kpi-value { font-size: 24px; font-weight: 700; margin: 4px 0; font-variant-numeric: tabular-nums; color: var(--text); }
.kpi-sub { font-size: 11px; color: var(--text-muted); }
.kpi-positive { color: var(--success); border-left-color: var(--success); }
.kpi-negative { color: var(--danger); border-left-color: var(--danger); }
.kpi-neutral { color: var(--text); }

/* ---- Highlighter Tool ---- */
.highlight-tools { display: inline-flex; align-items: center; gap: 4px; }
.hl-swatch { display: inline-block; width: 16px; height: 16px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: all 0.15s; }
.hl-swatch:hover, .hl-swatch.active { border-color: var(--text); transform: scale(1.15); }
body.highlight-mode { cursor: crosshair; }
body.highlight-mode #pnl-container td { cursor: crosshair; }

/* ---- Comments ---- */
#tab-pnl { display: flex; flex-direction: column; position: relative; }
#tab-pnl.active { display: flex; }
#comments-panel {
    position: fixed; right: 0; top: 48px; bottom: 0; width: 340px;
    background: #fff; border-left: 1px solid var(--border);
    box-shadow: -4px 0 16px rgba(0,0,0,0.06); z-index: 50;
    display: flex; flex-direction: column; overflow: hidden;
}
.comments-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--border-light); }
.comments-header h3 { margin: 0; font-size: 14px; font-weight: 700; }
.comments-badge { background: var(--danger); color: #fff; font-size: 10px; padding: 2px 6px; border-radius: 8px; margin-left: 6px; font-weight: 700; }
#comments-list { flex: 1; overflow-y: auto; padding: 10px; }
.comment-card { background: var(--bg-subtle); border-radius: var(--radius-sm); padding: 12px; margin-bottom: 8px; border-left: 3px solid var(--warning); font-size: 12px; }
.comment-card.resolved { border-left-color: var(--success); opacity: 0.6; }
.comment-meta { color: var(--text-muted); font-size: 11px; margin-bottom: 4px; }
.comment-cell-ref { font-weight: 700; color: var(--accent); }
.comment-text { margin: 4px 0; color: var(--text); }
.comment-actions { display: flex; gap: 6px; margin-top: 6px; }
.comment-actions button { font-size: 11px; padding: 3px 8px; }
.comment-reply { background: var(--accent-light); border-radius: 4px; padding: 6px 8px; margin-top: 4px; font-size: 11px; }
.comment-reply-input { width: 100%; padding: 6px 8px; border: 1px solid var(--border); border-radius: 4px; font-size: 11px; margin-top: 4px; font-family: var(--font); }
.has-comment { position: relative; }
.has-comment::after { content: ''; position: absolute; top: 0; right: 0; width: 0; height: 0; border-top: 6px solid var(--warning); border-left: 6px solid transparent; }
.comment-popup {
    position: absolute; top: -4px; right: 10px; z-index: 100;
    background: var(--text); color: #fff; padding: 8px 12px; border-radius: var(--radius-sm);
    font-size: 11px; max-width: 240px; white-space: normal;
    box-shadow: var(--shadow-lg); pointer-events: none; display: none;
}
.has-comment:hover .comment-popup { display: block; }

/* ---- Tab Transitions ---- */
.tab-content { animation: fadeIn 0.15s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---- Cell Tooltip ---- */
.cell-tooltip {
    position: fixed; z-index: 200; pointer-events: none;
    background: var(--text); color: #fff; padding: 12px 16px;
    border-radius: var(--radius-md); font-size: 11px; line-height: 1.5;
    box-shadow: var(--shadow-lg); max-width: 300px; opacity: 0; transition: opacity 0.12s;
}
.cell-tooltip.visible { opacity: 1; }
.cell-tooltip .tt-metric { font-weight: 700; font-size: 12px; color: #93c5fd; }
.cell-tooltip .tt-formula { color: #9ca3af; font-style: italic; font-size: 10px; }
.cell-tooltip .tt-row { display: flex; justify-content: space-between; gap: 14px; }
.cell-tooltip .tt-label { color: #9ca3af; }
.cell-tooltip .tt-val { font-weight: 600; font-variant-numeric: tabular-nums; }
.cell-tooltip .tt-divider { border-top: 1px solid #374151; margin: 4px 0; }

/* ---- Guided Tour ---- */
.tour-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.tour-card { background: #fff; border-radius: var(--radius-lg); padding: 32px; max-width: 460px; width: 90%; box-shadow: var(--shadow-lg); text-align: center; animation: fadeIn 0.2s ease-out; }
.tour-card h2 { margin-bottom: 8px; font-size: 18px; font-weight: 700; }
.tour-card p { color: var(--text-secondary); margin-bottom: 20px; font-size: 13px; line-height: 1.6; }
.tour-steps { display: flex; gap: 5px; justify-content: center; margin-bottom: 16px; }
.tour-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); }
.tour-dot.active { background: var(--accent); }
.tour-nav { display: flex; gap: 8px; justify-content: center; }
.tour-highlight { position: absolute; border: 2px solid var(--accent); border-radius: var(--radius-sm); box-shadow: 0 0 0 4000px rgba(0,0,0,0.35); z-index: 9998; pointer-events: none; transition: all 0.3s ease; }

/* ---- Loading Splash ---- */
.loading-splash {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 10000; transition: opacity 0.4s;
}
.loading-splash.fade-out { opacity: 0; pointer-events: none; }
.loading-splash .truck-svg { opacity: 0; margin-bottom: 20px; animation: truckFadeIn 0.6s ease-out forwards; }
@keyframes truckFadeIn { 0% { opacity: 0; } 100% { opacity: 0.2; } }
.loading-splash .truck-svg .truck-body { animation: truckBounce 0.5s ease-in-out infinite; }
@keyframes truckBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-1.5px); } }
.loading-splash .truck-svg .wheel { animation: wheelSpin 0.6s linear infinite; transform-origin: center; }
@keyframes wheelSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.loading-splash .truck-svg .road-lines { animation: roadScroll 1s linear infinite; }
@keyframes roadScroll { from { transform: translateX(0); } to { transform: translateX(-38px); } }
.loading-splash .truck-svg .ml1 { animation: motionStream 1.2s linear infinite; }
.loading-splash .truck-svg .ml2 { animation: motionStream 1.5s linear infinite; animation-delay: 0.2s; }
.loading-splash .truck-svg .ml3 { animation: motionStream 1.3s linear infinite; animation-delay: 0.4s; }
@keyframes motionStream { 0% { transform: translateX(30px); opacity: 0; } 15% { opacity: 0.4; } 100% { transform: translateX(-50px); opacity: 0; } }
.loading-splash h2 { color: var(--text); font-size: 18px; margin-bottom: 4px; font-weight: 700; }
.loading-splash p { color: var(--text-muted); font-size: 13px; }
.loading-bar { width: 180px; height: 3px; background: var(--border-light); border-radius: 2px; margin-top: 16px; overflow: hidden; }
.loading-bar-fill { height: 100%; width: 0%; background: var(--accent); border-radius: 2px; animation: loadFill 1.5s ease-out forwards; }
@keyframes loadFill { 0% { width: 0%; } 100% { width: 100%; } }

/* ---- P&L View ---- */
#pnl-container { overflow: auto; max-height: calc(100vh - 200px); position: relative; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); }
#pnl-container .grid-table { table-layout: auto; width: auto; }
#pnl-container .grid-table td, #pnl-container .grid-table th { white-space: nowrap; padding: 6px 12px; min-width: 80px; }
#pnl-container .grid-table td:nth-child(2) { min-width: auto; max-width: none; }
#pnl-container .grid-table thead th { position: sticky; top: 0; z-index: 20; }
#pnl-container .grid-table td:first-child, #pnl-container .grid-table th:first-child { position: sticky; left: 0; z-index: 15; }
#pnl-container .grid-table td:nth-child(2), #pnl-container .grid-table th:nth-child(2) { position: sticky; left: 28px; z-index: 15; }
#pnl-container .grid-table thead th:first-child, #pnl-container .grid-table thead th:nth-child(2) { z-index: 25; }

/* ---- Presentation Mode ---- */
body.presentation .top-nav { display: none; }
body.presentation .pnl-toolbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: var(--bg); padding: 6px 14px; box-shadow: var(--shadow-md);
    opacity: 0; transition: opacity 0.2s; border-radius: 0;
}
body.presentation .pnl-toolbar:hover { opacity: 1; }
body.presentation #tab-pnl { padding: 8px 24px; display: flex; flex-direction: column; justify-content: center; min-height: 100vh; }
body.presentation #pnl-container { font-size: 11px; }
body.presentation .grid-table td, body.presentation .grid-table th { padding: 3px 6px; }

/* ---- KPI Summary Cards ---- */
.kpi-strip { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.kpi-card {
    flex: 1; min-width: 150px; padding: 16px 18px;
    background: var(--card-bg); border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
    border-left: 3px solid var(--accent); transition: all 0.15s;
}
.kpi-card:hover { box-shadow: var(--shadow-md); }
.kpi-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.kpi-value { font-size: 22px; font-weight: 700; margin: 4px 0; font-variant-numeric: tabular-nums; }
.kpi-sub { font-size: 11px; color: var(--text-muted); }
.kpi-positive { color: var(--success); border-left-color: var(--success); }
.kpi-negative { color: var(--danger); border-left-color: var(--danger); }
.kpi-neutral { color: var(--text); }

/* ---- Highlighter Tool ---- */
.highlight-tools { display: inline-flex; align-items: center; gap: 3px; }
.hl-swatch { display: inline-block; width: 18px; height: 18px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: all 0.15s; }
.hl-swatch:hover, .hl-swatch.active { border-color: var(--text); transform: scale(1.15); }
body.highlight-mode { cursor: crosshair; }
body.highlight-mode #pnl-container td { cursor: crosshair; }

/* ---- Comments ---- */
#tab-pnl { display: flex; flex-direction: column; position: relative; }
#tab-pnl.active { display: flex; }
#comments-panel {
    position: fixed; right: 0; top: 48px; bottom: 0; width: 340px;
    background: var(--card-bg); border-left: 1px solid var(--border);
    box-shadow: -4px 0 16px rgba(0,0,0,0.06); z-index: 50;
    display: flex; flex-direction: column; overflow: hidden;
}
.comments-header { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--border-light); }
.comments-header h3 { margin: 0; font-size: 14px; font-weight: 700; }
.comments-badge { background: var(--danger); color: #fff; font-size: 10px; padding: 2px 6px; border-radius: 8px; margin-left: 6px; font-weight: 700; }
#comments-list { flex: 1; overflow-y: auto; padding: 10px; }
.comment-card { background: var(--bg-subtle); border-radius: var(--radius-sm); padding: 12px; margin-bottom: 8px; border-left: 3px solid var(--danger); font-size: 12px; }
.comment-card.resolved { border-left-color: var(--success); opacity: 0.6; }
.comment-meta { color: var(--text-muted); font-size: 10px; margin-bottom: 4px; }
.comment-cell-ref { font-weight: 700; color: var(--accent); }
.comment-text { margin: 4px 0; color: var(--text); }
.comment-actions { display: flex; gap: 4px; margin-top: 6px; }
.comment-actions button { font-size: 10px; padding: 2px 6px; }
.comment-reply { background: var(--accent-light); border-radius: 4px; padding: 6px 8px; margin-top: 4px; font-size: 11px; }
.comment-reply-input { width: 100%; padding: 5px 8px; border: 1px solid var(--border); border-radius: 4px; font-size: 11px; margin-top: 4px; font-family: var(--font); }
.has-comment { position: relative; }
.has-comment::after { content: ''; position: absolute; top: 0; right: 0; width: 0; height: 0; border-top: 7px solid var(--danger); border-left: 7px solid transparent; }
.comment-popup {
    position: absolute; top: -4px; right: 10px; z-index: 100;
    background: var(--text); color: #fff; padding: 6px 10px; border-radius: var(--radius-sm);
    font-size: 10px; max-width: 240px; white-space: normal;
    box-shadow: var(--shadow-lg); pointer-events: none; display: none;
}
.has-comment:hover .comment-popup { display: block; }

/* ---- Tab Transitions ---- */
.tab-content { animation: fadeIn 0.15s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---- Cell Tooltip ---- */
.cell-tooltip {
    position: fixed; z-index: 200; pointer-events: none;
    background: var(--text); color: #fff; padding: 10px 14px;
    border-radius: var(--radius-md); font-size: 11px; line-height: 1.5;
    box-shadow: var(--shadow-lg); max-width: 300px; opacity: 0; transition: opacity 0.12s;
}
.cell-tooltip.visible { opacity: 1; }
.cell-tooltip .tt-metric { font-weight: 700; font-size: 12px; color: #93c5fd; }
.cell-tooltip .tt-formula { color: #9aa0a6; font-style: italic; font-size: 10px; }
.cell-tooltip .tt-row { display: flex; justify-content: space-between; gap: 14px; }
.cell-tooltip .tt-label { color: #9aa0a6; }
.cell-tooltip .tt-val { font-weight: 600; font-variant-numeric: tabular-nums; }
.cell-tooltip .tt-divider { border-top: 1px solid #374151; margin: 4px 0; }

/* ---- Guided Tour ---- */
.tour-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); z-index: 9999; display: flex; align-items: center; justify-content: center; }
.tour-card { background: var(--card-bg); border-radius: var(--radius-lg); padding: 28px 32px; max-width: 460px; width: 90%; box-shadow: var(--shadow-lg); text-align: center; animation: fadeIn 0.2s ease-out; }
.tour-card h2 { margin-bottom: 6px; font-size: 18px; font-weight: 700; }
.tour-card p { color: var(--text-secondary); margin-bottom: 18px; font-size: 13px; line-height: 1.6; }
.tour-steps { display: flex; gap: 5px; justify-content: center; margin-bottom: 14px; }
.tour-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--border); }
.tour-dot.active { background: var(--accent); }
.tour-nav { display: flex; gap: 8px; justify-content: center; }
.tour-highlight { position: absolute; border: 2px solid var(--accent); border-radius: var(--radius-sm); box-shadow: 0 0 0 4000px rgba(0,0,0,0.35); z-index: 9998; pointer-events: none; transition: all 0.3s ease; }

/* ---- Loading Splash ---- */
.loading-splash {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    z-index: 10000; transition: opacity 0.5s;
}
.loading-splash.fade-out { opacity: 0; pointer-events: none; }
.loading-splash .truck-svg { opacity: 0; margin-bottom: 20px; animation: truckFadeIn 0.6s ease-out forwards; }
@keyframes truckFadeIn { 0% { opacity: 0; } 100% { opacity: 0.3; } }
.loading-splash .truck-svg .truck-body { animation: truckBounce 0.5s ease-in-out infinite; }
@keyframes truckBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-1.5px); } }
.loading-splash .truck-svg .wheel { animation: wheelSpin 0.6s linear infinite; transform-origin: center; }
@keyframes wheelSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.loading-splash .truck-svg .road-lines { animation: roadScroll 1s linear infinite; }
@keyframes roadScroll { from { transform: translateX(0); } to { transform: translateX(-38px); } }
.loading-splash .truck-svg .ml1 { animation: motionStream 1.2s linear infinite; }
.loading-splash .truck-svg .ml2 { animation: motionStream 1.5s linear infinite; animation-delay: 0.2s; }
.loading-splash .truck-svg .ml3 { animation: motionStream 1.3s linear infinite; animation-delay: 0.4s; }
@keyframes motionStream { 0% { transform: translateX(30px); opacity: 0; } 15% { opacity: 0.4; } 100% { transform: translateX(-50px); opacity: 0; } }
.loading-splash h2 { color: var(--text); font-size: 18px; margin-bottom: 4px; font-weight: 700; }
.loading-splash p { color: var(--text-muted); font-size: 13px; }
.loading-bar { width: 180px; height: 3px; background: var(--border-light); border-radius: 2px; margin-top: 16px; overflow: hidden; }
.loading-bar-fill { height: 100%; width: 0%; background: var(--accent); border-radius: 2px; animation: loadFill 1.5s ease-out forwards; }
@keyframes loadFill { 0% { width: 0%; } 100% { width: 100%; } }

/* ---- Input Grid Auto-fit ---- */
#grid-container .grid-table { table-layout: auto; width: auto; min-width: 100%; }
#grid-container .grid-table td:first-child { min-width: auto; max-width: none; width: auto; padding: 5px 8px; }
#grid-container .grid-table td:nth-child(2) { min-width: auto; width: auto; padding: 5px 8px; }
#grid-container .grid-table td:nth-child(3) { min-width: auto; width: auto; padding: 5px 8px; }
#grid-container .grid-table th { white-space: nowrap; padding: 8px 12px; }
#grid-container .grid-table td { white-space: nowrap; }

/* ---- Dark Theme ---- */
body.dark {
    --bg: #111827; --bg-subtle: #1f2937; --text: #f3f4f6; --text-secondary: #d1d5db;
    --text-muted: #6b7280; --card-bg: #1f2937; --border: #374151; --border-light: #2d3748;
    --accent-light: rgba(96,165,250,0.1); --table-bg: #1f2937; --table-alt: #263040;
    --table-header: #1e293b; --table-header-text: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4); --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
}
body.dark { background: var(--bg); color: var(--text); }
body.dark .top-nav { background: #1e293b; border-color: var(--border); color: var(--text); }
body.dark .nav-left h2 { color: var(--text); }
body.dark .nav-tab { color: var(--text-muted); }
body.dark .nav-tab.active { color: #93c5fd; border-bottom-color: #93c5fd; }
body.dark .login-card { background: var(--card-bg); color: var(--text); box-shadow: var(--shadow-lg); border-color: var(--border); }
body.dark #login-screen { background: var(--bg); }
body.dark .login-form input { background: var(--bg); color: var(--text); border-color: var(--border); }
body.dark .grid-table td { border-color: var(--border-light); background: var(--table-bg); color: var(--text); }
body.dark .grid-table th { background: var(--table-header); color: var(--table-header-text); border-color: var(--border); }
body.dark .grid-table td:first-child, body.dark .grid-table td:nth-child(2), body.dark .grid-table td:nth-child(3) { background: var(--table-alt); }
body.dark .grid-table tbody tr:hover td { background: rgba(21,94,239,0.08); }
body.dark .cell-input { color: var(--text); }
body.dark .cell-inherited { background: var(--table-alt); color: var(--text-muted); }
body.dark .cell-explicit { background: var(--table-bg); }
body.dark .cell-changed { background: #2a2000; }
body.dark .kpi-card { background: var(--card-bg); border-color: var(--border-light); }
body.dark .tour-card { background: var(--card-bg); color: var(--text); }
body.dark .tour-card p { color: var(--text-secondary); }
body.dark #comments-panel { border-color: var(--border); background: var(--card-bg); }
body.dark .comments-header { border-color: var(--border-light); }
body.dark .comment-card { background: var(--bg); }
body.dark .comment-reply { background: rgba(21,94,239,0.1); }
body.dark .comment-reply-input { background: var(--bg); color: var(--text); border-color: var(--border); }
body.dark .pnl-toolbar, body.dark .input-toolbar { background: var(--card-bg); border-color: var(--border-light); }
body.dark .toolbar-left select, body.dark .toolbar-right select { background: var(--bg); color: var(--text); border-color: var(--border); }
body.dark .admin-card { background: #0d1b33; border-color: rgba(100,160,255,0.1); }
body.dark #tab-admin { background: #071428; }
body.dark .admin-tabs { background: var(--card-bg); border-color: var(--border); }
body.dark .admin-tab { color: var(--text-muted); }
body.dark .admin-tab.active { color: #93c5fd; border-bottom-color: #93c5fd; }
body.dark .form-group select, body.dark .form-group input { background: var(--bg); color: var(--text); border-color: var(--border); }
body.dark .status-table { background: var(--card-bg); border-color: var(--border-light); }
body.dark .status-table th { background: var(--table-header); color: var(--text-secondary); }
body.dark .status-table td { border-color: var(--border-light); color: var(--text); }
body.dark .btn-secondary { background: var(--bg-subtle); color: var(--text-secondary); border-color: var(--border); }
body.dark .btn-secondary:hover { background: #21262d; }
body.dark .banner-warning { background: #2a2000; color: #e3a600; border-color: #3d3000; }
body.dark .users-table th, body.dark .overrides-table th { background: var(--table-alt); color: var(--text-secondary); }
body.dark .users-table td, body.dark .overrides-table td { color: var(--text); border-color: var(--border-light); }
body.dark #pnl-container .grid-table thead th { background: var(--table-header); color: var(--text); }
body.dark #pnl-container .grid-table td:first-child, body.dark #pnl-container .grid-table td:nth-child(2) { background: var(--table-alt); }
body.dark .loading-splash { background: var(--bg); }
body.dark .loading-splash h2 { color: var(--text); }
body.dark .modal-box { background: var(--card-bg); }
body.dark .modal-box h3 { color: var(--text); }
body.dark .modal-box p { color: var(--text-secondary); }
body.dark .modal-box .btn-cancel { background: var(--bg-subtle); color: var(--text-secondary); border-color: var(--border); }
body.dark .ds-multiselect-btn { background: var(--bg); color: var(--text); border-color: var(--border); }
body.dark .ds-multiselect-dropdown { background: var(--card-bg); border-color: var(--border); }
body.dark .ds-multiselect-dropdown label:hover { background: var(--accent-light); }
/* Dark mode P&L bold rows — use a visible dark blue-grey instead of light fill */
body.dark #pnl-container tr[style*="eef2f9"] td,
body.dark .grid-table tr[style*="eef2f9"] td { background: #1e2a3a !important; color: #e4e8ec !important; }
body.dark #pnl-container .grid-table td { color: #d1d5db; }
body.dark #pnl-container .grid-table td:first-child { color: #9ca3af; }
body.dark #grid-container { background: var(--card-bg); border-color: var(--border); }
body.dark #pnl-container { background: var(--card-bg); border-color: var(--border); }

/* ---- Waterfall Bridge Chart ---- */
.waterfall-chart {
    background: var(--card-bg); border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
    padding: 24px; margin-top: 16px;
}
.waterfall-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.waterfall-subtitle { font-size: 11px; color: var(--text-muted); margin-bottom: 20px; }
.waterfall-svg { width: 100%; overflow-x: auto; }
.waterfall-svg text { font-family: var(--font); }


/* ---- P&L First Column Fix ---- */
#pnl-container .grid-table td:first-child,
#pnl-container .grid-table th:first-child {
    width: 28px; min-width: 28px; max-width: 28px; padding: 4px 4px;
}

/* ---- Admin Panel Premium Overrides ---- */
#tab-admin select,
#tab-admin input[type="text"],
#tab-admin input[type="number"],
#tab-admin input[type="datetime-local"] {
    padding: 9px 14px; border: 1px solid rgba(100,160,255,0.15); border-radius: var(--radius-sm);
    font-size: 13px; background: #0a1628; font-family: var(--font); color: #e2e8f0;
    transition: all 0.15s;
}
#tab-admin select:focus,
#tab-admin input:focus {
    outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.2); background: #081222;
}
#tab-admin .btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none; color: #fff; font-weight: 600; padding: 9px 18px;
    border-radius: var(--radius-sm); cursor: pointer; font-size: 13px;
    box-shadow: 0 2px 8px rgba(59,130,246,0.3);
    transition: all 0.15s;
}
#tab-admin .btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 4px 12px rgba(59,130,246,0.4);
    transform: translateY(-1px);
}
#tab-admin .btn-secondary,
#tab-admin .btn.btn-secondary {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    color: #e2e8f0; font-weight: 500; padding: 9px 18px;
    border-radius: var(--radius-sm); cursor: pointer; font-size: 13px;
    transition: all 0.15s;
}
#tab-admin .btn-secondary:hover,
#tab-admin .btn.btn-secondary:hover {
    background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2);
    transform: translateY(-1px);
}
#tab-admin .btn-sm {
    padding: 7px 14px; font-size: 12px;
}
#tab-admin #users-list,
#tab-admin #overrides-list {
    color: #cbd5e1;
}
#tab-admin #calc-result {
    color: #94a3b8;
}
#tab-admin #baseline-feedback {
    background: rgba(18,183,106,0.1); color: #6ee7b7; border: 1px solid rgba(18,183,106,0.2);
}
#tab-admin label {
    color: #94a3b8;
}
