/* ══════════════════════════════════════════════════════════════
   METI CUSTOMIZABLE NAVIGATION SYSTEM — v1.0
   Drop-in file. Does not modify existing styles.
   ══════════════════════════════════════════════════════════════ */

/* Hide old sidebar */
.sidebar { display: none !important; width: 0 !important; }
.sidebar-overlay { display: none !important; }
.app-container { flex-direction: column !important; }
.main-content { margin-left: 0 !important; }
.menu-toggle { display: none !important; }
.content { padding-bottom: 100px !important; }

/* ═══════════════ BOTTOM DOCK ═══════════════ */
.bottom-dock {
    position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
    display: none; align-items: flex-end; gap: 4px;
    padding: 10px 12px;
    background: rgba(12, 12, 20, 0.82);
    backdrop-filter: blur(30px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    z-index: 10001;
}
.bottom-dock.show { display: flex; }

.bd-logo {
    width: 48px; height: 48px; border-radius: 13px;
    background: linear-gradient(135deg, #ff3c3c, #ff6a3c);
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 18px; color: #fff;
    box-shadow: 0 4px 16px rgba(255, 60, 60, 0.25);
    cursor: pointer; transition: all 0.2s; flex-shrink: 0;
}
.bd-logo:hover { transform: scale(1.05); }

.bd-sep {
    width: 1px; height: 28px;
    background: rgba(255, 255, 255, 0.05);
    margin: 0 4px; align-self: center; flex-shrink: 0;
}

.bd-item {
    width: 48px; height: 48px; border-radius: 13px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; cursor: pointer;
    transition: all 0.22s cubic-bezier(0.2, 0, 0, 1.4);
    position: relative; flex-shrink: 0;
}
.bd-item:hover { transform: translateY(-10px) scale(1.25); }
.bd-item.active {
    background: rgba(255, 60, 60, 0.12);
    box-shadow: 0 4px 16px rgba(255, 60, 60, 0.12);
}
.bd-item.active::after {
    content: ''; position: absolute; bottom: -6px;
    width: 5px; height: 5px; border-radius: 50%;
    background: #ff4646; box-shadow: 0 0 8px rgba(255, 70, 70, 0.6);
}

.bd-item .bd-tip {
    position: absolute; bottom: calc(100% + 12px); left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(12, 12, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 14px; border-radius: 8px;
    font-size: 12px; font-weight: 600; white-space: nowrap;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0; pointer-events: none; transition: all 0.15s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.bd-item:hover .bd-tip { opacity: 1; transform: translateX(-50%) translateY(0); }

.bd-item .bd-badge {
    position: absolute; top: 0; right: 0;
    min-width: 16px; height: 16px;
    background: #ff4646; border-radius: 8px;
    font-size: 8px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px; border: 2px solid rgba(12, 12, 20, 0.8); color: #fff;
}

/* Grouped sections in dock */
.bd-group {
    display: flex; gap: 3px; padding: 4px 5px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px; border: 0.5px solid rgba(255, 255, 255, 0.03);
    position: relative;
}
.bd-group-label {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    font-size: 8px; font-weight: 700; color: rgba(255, 255, 255, 0.39);
    text-transform: uppercase; letter-spacing: 1.5px; white-space: nowrap; padding: 2px;
}

/* ═══════════════ CORNER DOCK ═══════════════ */
.corner-dock {
    position: fixed; bottom: 16px; left: 16px;
    display: none; flex-direction: column; align-items: center; gap: 3px;
    padding: 10px 8px;
    background: rgba(12, 12, 20, 0.82);
    backdrop-filter: blur(30px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    z-index: 10001;
}
.corner-dock.show { display: flex; }

.cd-logo {
    width: 40px; height: 40px; border-radius: 11px;
    background: linear-gradient(135deg, #ff3c3c, #ff6a3c);
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 15px; color: #fff;
    box-shadow: 0 4px 16px rgba(255, 60, 60, 0.25);
    cursor: pointer; flex-shrink: 0;
}
.cd-sep { width: 22px; height: 1px; background: rgba(255, 255, 255, 0.05); margin: 3px 0; }

.cd-item {
    width: 40px; height: 40px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; cursor: pointer; transition: all 0.2s;
    position: relative; opacity: 0.35;
}
.cd-item:hover { opacity: 0.7; background: rgba(255, 255, 255, 0.03); transform: scale(1.1); }
.cd-item.active { opacity: 1; background: rgba(255, 60, 60, 0.12); }
.cd-item.active::after {
    content: ''; position: absolute; left: -4px; top: 50%; transform: translateY(-50%);
    width: 4px; height: 4px; border-radius: 50%;
    background: #ff4646; box-shadow: 0 0 8px rgba(255, 70, 70, 0.6);
}
.cd-item .cd-tip {
    position: absolute; left: calc(100% + 12px); top: 50%;
    transform: translateY(-50%) translateX(4px);
    background: rgba(12, 12, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 14px; border-radius: 8px;
    font-size: 12px; font-weight: 600; white-space: nowrap;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0; pointer-events: none; transition: all 0.15s;
}
.cd-item:hover .cd-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
.cd-item .cd-badge {
    position: absolute; top: 0; right: 0;
    min-width: 14px; height: 14px; background: #ff4646; border-radius: 7px;
    font-size: 7px; font-weight: 700; display: flex; align-items: center; justify-content: center;
    padding: 0 3px; border: 2px solid rgba(12, 12, 20, 0.8); color: #fff;
}

/* ═══════════════ VERTICAL DOCK (left side) ═══════════════ */
.vertical-dock {
    position: fixed; left: 14px; top: 50%; transform: translateY(-50%);
    display: none; flex-direction: column; align-items: center; gap: 3px;
    padding: 10px 8px;
    background: rgba(12, 12, 20, 0.82);
    backdrop-filter: blur(30px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    z-index: 10001;
}
.vertical-dock.show { display: flex; }

.vd-logo {
    width: 40px; height: 40px; border-radius: 11px;
    background: linear-gradient(135deg, #ff3c3c, #ff6a3c);
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 15px; color: #fff;
    box-shadow: 0 4px 16px rgba(255, 60, 60, 0.25);
    cursor: pointer; margin-bottom: 2px;
}
.vd-sep { width: 22px; height: 1px; background: rgba(255, 255, 255, 0.05); margin: 3px 0; }

.vd-item {
    width: 40px; height: 40px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px; cursor: pointer;
    transition: all 0.22s cubic-bezier(0.2, 0, 0, 1.4);
    position: relative; opacity: 0.35;
}
.vd-item:hover { opacity: 0.7; transform: translateX(6px) scale(1.15); background: rgba(255, 255, 255, 0.03); }
.vd-item.active { opacity: 1; background: rgba(255, 60, 60, 0.12); }
.vd-item.active::after {
    content: ''; position: absolute; left: -4px; top: 50%; transform: translateY(-50%);
    width: 4px; height: 4px; border-radius: 50%;
    background: #ff4646; box-shadow: 0 0 8px rgba(255, 70, 70, 0.6);
}
.vd-item .vd-tip {
    position: absolute; left: calc(100% + 12px); top: 50%;
    transform: translateY(-50%) translateX(4px);
    background: rgba(12, 12, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 14px; border-radius: 8px;
    font-size: 12px; font-weight: 600; white-space: nowrap;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0; pointer-events: none; transition: all 0.15s;
}
.vd-item:hover .vd-tip { opacity: 1; transform: translateY(-50%) translateX(0); }
.vd-item .vd-badge {
    position: absolute; top: 1px; right: 1px;
    min-width: 14px; height: 14px; background: #ff4646; border-radius: 7px;
    font-size: 7px; font-weight: 700; display: flex; align-items: center; justify-content: center;
    padding: 0 3px; border: 2px solid rgba(12, 12, 20, 0.8); color: #fff;
}

/* ═══════════════ FLOATING CARDS (top) ═══════════════ */
.floating-cards {
    position: fixed; top: 10px; left: 50%; transform: translateX(-50%);
    display: none; gap: 6px; z-index: 10001; align-items: stretch;
}
.floating-cards.show { display: flex; }

.fc-item {
    padding: 10px 16px; border-radius: 12px;
    background: rgba(12, 12, 20, 0.82);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer; transition: all 0.2s;
    display: flex; align-items: center; gap: 10px;
}
.fc-item:hover {
    background: rgba(12, 12, 20, 0.9);
    border-color: rgba(255, 255, 255, 0.07);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.fc-item.active { border-color: rgba(255, 60, 60, 0.15); background: rgba(255, 60, 60, 0.06); }
.fc-item .fc-icon { font-size: 20px; }
.fc-item .fc-info { flex: 1; }
.fc-item .fc-name { font-size: 12px; color: rgba(255, 255, 255, 0.4); font-weight: 500; white-space: nowrap; }
.fc-item.active .fc-name { color: #fff; font-weight: 600; }
.fc-val { font-size: 11px; color: rgba(255, 255, 255, 0.2); margin-top: 1px; }
.fc-more {
    padding: 10px 16px; border-radius: 12px;
    background: rgba(12, 12, 20, 0.82); backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    cursor: pointer; font-size: 12px; color: rgba(255, 255, 255, 0.2);
    font-weight: 600; display: flex; align-items: center; white-space: nowrap;
    transition: all 0.15s;
}
.fc-more:hover { background: rgba(12, 12, 20, 0.9); color: rgba(255, 255, 255, 0.4); }

/* ═══════════════ TOP BAR NAV ═══════════════ */
.top-bar-nav {
    position: fixed; top: 0; left: 0; right: 0;
    display: none; flex-direction: column; z-index: 10001;
    background: rgba(10, 10, 16, 0.95); backdrop-filter: blur(20px);
}
.top-bar-nav.show { display: flex; }

.tb-sections {
    display: flex; align-items: center; padding: 8px 16px; gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.tb-sec-logo {
    width: 32px; height: 32px; border-radius: 9px;
    background: linear-gradient(135deg, #ff3c3c, #ff6a3c);
    display: flex; align-items: center; justify-content: center;
    font-weight: 900; font-size: 13px; color: #fff;
    margin-right: 10px; flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(255, 60, 60, 0.2);
}
.tb-sec {
    padding: 7px 16px; border-radius: 9px;
    font-size: 13px; font-weight: 600;
    color: rgba(255, 255, 255, 0.25);
    cursor: pointer; white-space: nowrap;
    transition: all 0.15s; position: relative;
}
.tb-sec:hover { color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.02); }
.tb-sec.active { color: #fff; background: rgba(255, 255, 255, 0.04); }
.tb-sec.active::after {
    content: ''; position: absolute; bottom: -9px; left: 50%; transform: translateX(-50%);
    width: 20px; height: 3px; background: #ff4646; border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 70, 70, 0.4);
}
.tb-sec .tb-badge {
    display: inline-flex; margin-left: 5px;
    min-width: 18px; height: 18px; background: #ff4646; border-radius: 9px;
    font-size: 9px; font-weight: 700; align-items: center; justify-content: center;
    padding: 0 5px; color: #fff;
}
.tb-items {
    display: flex; gap: 2px; padding: 6px 16px;
    background: rgba(255, 255, 255, 0.008);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    overflow-x: auto;
}
.tb-items::-webkit-scrollbar { height: 0; }
.tb-it {
    padding: 6px 14px; border-radius: 8px;
    font-size: 12px; font-weight: 500;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer; white-space: nowrap;
    display: flex; align-items: center; gap: 6px;
    transition: all 0.12s;
}
.tb-it:hover { color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.015); }
.tb-it.active { color: #fff; background: rgba(255, 60, 60, 0.07); font-weight: 600; }
.tb-it .tb-meta { font-size: 9px; color: rgba(255, 255, 255, 0.1); }

/* ═══════════════ KPI STRIP ═══════════════ */
.kpi-strip {
    position: fixed; bottom: 80px; right: 200px;
    display: none; gap: 4px; padding: 8px;
    background: rgba(12, 12, 20, 0.82);
    backdrop-filter: blur(30px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    z-index: 10001;
}
.kpi-strip.show { display: flex; }

.ks-item {
    padding: 8px 14px; border-radius: 8px;
    background: rgba(255, 255, 255, 0.015);
    text-align: center; min-width: 64px;
}
.ks-val { font-size: 16px; font-weight: 800; line-height: 1; }
.ks-lbl {
    font-size: 8px; font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase; letter-spacing: 1px; margin-top: 3px;
}

/* ═══════════════ DRAWER ═══════════════ */
.drawer-tab {
    position: fixed; bottom: 0; left: 50%; transform: translateX(-50%);
    padding: 7px 22px;
    display: none; align-items: center; gap: 8px;
    background: rgba(15, 15, 25, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.05); border-bottom: none;
    border-radius: 14px 14px 0 0;
    cursor: pointer; backdrop-filter: blur(20px);
    z-index: 10002; transition: all 0.15s;
}
.drawer-tab.show { display: flex; }
.drawer-tab:hover { background: rgba(15, 15, 25, 0.95); padding-bottom: 12px; }
.drawer-pill { width: 28px; height: 3px; border-radius: 2px; background: rgba(255, 255, 255, 0.12); }
.drawer-tab span { font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, 0.25); }

.drawer-overlay {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.4);
    z-index: 10003; display: none;
}
.drawer-overlay.show { display: block; }

.drawer-panel {
    position: fixed; bottom: -600px; left: 0; right: 0;
    background: rgba(10, 10, 18, 0.97);
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10004;
    transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
    padding: 0 24px 28px;
    max-height: 70vh; overflow-y: auto;
}
.drawer-panel::-webkit-scrollbar { width: 4px; }
.drawer-panel::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.06); border-radius: 2px; }
.drawer-panel.open { bottom: 0; }

.drawer-handle {
    width: 40px; height: 4px; border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    margin: 14px auto 16px; cursor: pointer;
}

.drawer-grid {
    display: flex; gap: 12px;
    max-width: 1100px; margin: 0 auto;
    overflow-x: auto; padding-bottom: 8px;
}
.drawer-grid::-webkit-scrollbar { height: 4px; }
.drawer-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.06); border-radius: 2px; }

.dw-col {
    flex: 1; min-width: 180px;
}
.dw-col-title {
    font-size: 9px; font-weight: 700; color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase; letter-spacing: 2px;
    padding: 0 8px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 4px;
}

.dw-row {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px; border-radius: 9px;
    cursor: pointer; transition: all 0.12s;
    margin-bottom: 1px;
}
.dw-row:hover { background: rgba(255, 255, 255, 0.025); }
.dw-row.active { background: rgba(255, 60, 60, 0.07); }
.dw-row-icon { font-size: 15px; flex-shrink: 0; width: 20px; text-align: center; }
.dw-row-name {
    font-size: 12px; color: rgba(255, 255, 255, 0.35); font-weight: 500;
    flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dw-row.active .dw-row-name { color: #fff; font-weight: 600; }
.dw-row-meta {
    font-size: 10px; color: rgb(135 73 20);
    white-space: nowrap; flex-shrink: 0;
}
.dw-row.active .dw-row-meta { color: rgba(255, 100, 60, 0.5); }

/* ═══════════════ COMMAND PALETTE ═══════════════ */
.cmd-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(6px);
    z-index: 100000; display: none;
    align-items: flex-start; justify-content: center;
    padding-top: 18vh;
}
.cmd-overlay.show { display: flex; }

.cmd-box {
    width: 560px; max-width: calc(100vw - 32px);
    background: #111118;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: cmdIn 0.12s ease;
}
@keyframes cmdIn { from { opacity: 0; transform: scale(0.97) translateY(-6px); } }

.cmd-box input {
    padding: 16px 20px; border: none; background: none;
    width: 100%; font-size: 16px; color: #fff;
    font-family: inherit;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    outline: none;
}
.cmd-box input::placeholder { color: rgba(255, 255, 255, 0.18); }

.cmd-list { max-height: 380px; overflow-y: auto; padding: 8px; }
.cmd-list::-webkit-scrollbar { width: 0; }
.cmd-sec {
    font-size: 10px; font-weight: 700;
    color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase; letter-spacing: 2px;
    padding: 10px 12px 4px;
}
.cmd-r {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 14px; border-radius: 10px;
    cursor: pointer; margin-bottom: 1px;
    transition: all 0.1s;
}
.cmd-r:hover { background: rgba(255, 60, 60, 0.07); }
.cmd-r .cr-i { font-size: 18px; width: 24px; text-align: center; }
.cmd-r .cr-n { font-size: 13px; color: rgba(255, 255, 255, 0.6); font-weight: 500; flex: 1; }
.cmd-r .cr-d { font-size: 11px; color: rgba(255, 255, 255, 0.12); }
.cmd-r .cr-b {
    font-size: 9px; font-weight: 700; color: #fff;
    background: #ff4646; padding: 2px 8px; border-radius: 8px;
}

/* ═══════════════ SETTINGS ═══════════════ */
.nav-settings-trigger {
    position: fixed; top: 16px; right: 16px; z-index: 10005;
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: none; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.2s; font-size: 20px;
}
.nav-settings-trigger.show { display: flex; }
.nav-settings-trigger:hover { background: rgba(255, 255, 255, 0.08); transform: rotate(30deg); }

.nav-settings-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.5); backdrop-filter: blur(4px);
    z-index: 99999; display: none;
    align-items: center; justify-content: center;
}
.nav-settings-overlay.show { display: flex; }

.nav-settings-panel {
    width: 640px; max-width: calc(100vw - 32px); max-height: 85vh;
    background: #111118;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px; overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    animation: cmdIn 0.2s ease;
    display: flex; flex-direction: column;
}
.nav-settings-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex; align-items: center; justify-content: space-between;
}
.nav-settings-header h2 { font-size: 16px; font-weight: 700; color: #fff; }
.nav-settings-close {
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 16px;
    color: rgba(255, 255, 255, 0.3); transition: all 0.15s;
}
.nav-settings-close:hover { background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.6); }

.nav-settings-body { padding: 20px 24px; overflow-y: auto; flex: 1; }
.nav-settings-body::-webkit-scrollbar { width: 4px; }
.nav-settings-body::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.06); border-radius: 2px; }

.nav-settings-section { margin-bottom: 24px; }
.nav-settings-section h3 {
    font-size: 11px; font-weight: 700;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 12px;
}

.nav-comp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.nav-comp-card {
    padding: 16px; border-radius: 14px;
    background: rgba(255, 255, 255, 0.015);
    border: 1.5px solid rgba(255, 255, 255, 0.04);
    cursor: pointer; transition: all 0.2s; position: relative;
}
.nav-comp-card:hover { background: rgba(255, 255, 255, 0.025); border-color: rgba(255, 255, 255, 0.08); }
.nav-comp-card.active { border-color: rgba(255, 60, 60, 0.3); background: rgba(255, 60, 60, 0.04); }

.nav-comp-check {
    position: absolute; top: 12px; right: 12px;
    width: 22px; height: 22px; border-radius: 7px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; transition: all 0.15s;
}
.nav-comp-card.active .nav-comp-check {
    background: linear-gradient(135deg, #ff3c3c, #ff6a3c);
    border-color: transparent; color: #fff;
}
.nav-comp-icon { font-size: 24px; margin-bottom: 8px; }
.nav-comp-name { font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, 0.6); margin-bottom: 4px; }
.nav-comp-card.active .nav-comp-name { color: #fff; }
.nav-comp-desc { font-size: 11px; color: rgba(255, 255, 255, 0.15); line-height: 1.5; }

.nav-dock-picker { display: flex; flex-wrap: wrap; gap: 5px; }
.nav-dock-chip {
    padding: 6px 12px; border-radius: 8px;
    font-size: 11px; font-weight: 600;
    cursor: pointer; display: flex; align-items: center; gap: 5px;
    transition: all 0.12s;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.25);
}
.nav-dock-chip:hover { background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.4); }
.nav-dock-chip.active {
    background: rgba(255, 60, 60, 0.08);
    border-color: rgba(255, 60, 60, 0.15); color: #fff;
}

.nav-settings-footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex; justify-content: space-between; align-items: center;
}
.nav-reset-btn {
    padding: 9px 18px; border-radius: 8px;
    background: none; border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.3); font-size: 12px; font-weight: 600;
    cursor: pointer; font-family: inherit; transition: all 0.15s;
}
.nav-reset-btn:hover { border-color: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.5); }
.nav-save-btn {
    padding: 9px 22px; border-radius: 8px;
    background: linear-gradient(135deg, #ff3c3c, #ff6a3c);
    border: none; color: #fff; font-size: 12px; font-weight: 700;
    cursor: pointer; font-family: inherit; transition: all 0.15s;
    box-shadow: 0 4px 12px rgba(255, 60, 60, 0.2);
}
.nav-save-btn:hover { box-shadow: 0 4px 20px rgba(255, 60, 60, 0.3); transform: translateY(-1px); }

/* ═══════════════ TOAST ═══════════════ */
.nav-toast {
    position: fixed; top: 20px; left: 50%;
    transform: translateX(-50%) translateY(-60px);
    padding: 12px 24px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 12px;
    font-size: 13px; font-weight: 600; color: #4ade80;
    z-index: 999999; transition: all 0.3s;
    opacity: 0; pointer-events: none;
}
.nav-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }