
/* DGX OS v4.1 Premium Sidebar */
.sidebar,
.dgx-sidebar {
    background:
        linear-gradient(180deg, rgba(15,24,42,.82), rgba(2,6,14,.72)) !important;
    border-right: 1px solid rgba(255,255,255,.07) !important;
    backdrop-filter: blur(24px);
}

[data-workspace] {
    position: relative;
    border-radius: 14px;
    margin: 4px 10px;
    padding: 11px 13px;
    color: rgba(226,232,240,.66);
    transition: 280ms ease;
}

[data-workspace]:hover {
    color: #f8fafc;
    background: rgba(255,255,255,.055);
    transform: translateX(2px);
}

[data-workspace].dgx-active,
[data-workspace].active {
    color: #ffffff !important;
    background:
        linear-gradient(135deg, rgba(56,189,248,.22), rgba(124,58,237,.20)) !important;
    border: 1px solid rgba(147,197,253,.22);
    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.03),
        0 12px 32px rgba(0,0,0,.22);
}

[data-workspace].dgx-active::before,
[data-workspace].active::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 50%;
    width: 4px;
    height: 22px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: linear-gradient(180deg, #38bdf8, #7c3aed);
    box-shadow: 0 0 18px rgba(56,189,248,.55);
}

/* DGxOne Premium Sidebar v1 — START */

/* Main sidebar frame */
.dgx-sidebar {
    display: flex !important;
    flex-direction: column !important;
    width: 220px !important;
    min-width: 220px !important;
    height: 100% !important;

    padding: 18px 14px 16px !important;

    border-right: 1px solid rgba(148, 163, 184, 0.10) !important;

    background:
        linear-gradient(
            180deg,
            rgba(9, 14, 27, 0.98),
            rgba(6, 10, 21, 0.99)
        ) !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;
}

/* Logo / identity area */
.dgx-sidebar .dgx-brand,
.dgx-sidebar .dgx-sidebar-brand,
.dgx-sidebar .dgx-logo-area {
    margin: 0 0 22px !important;
    padding: 4px 6px 14px !important;
}

/* Navigation stack */
.dgx-sidebar .dgx-nav {
    display: flex !important;
    flex-direction: column !important;

    gap: 12px !important;

    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Every sidebar card */
.dgx-sidebar .dgx-nav-item {
    position: relative !important;

    display: grid !important;
    grid-template-columns: 24px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 11px !important;

    width: 100% !important;
    min-height: 50px !important;

    margin: 0 !important;
    padding: 0 14px !important;

    border: 1px solid rgba(148, 163, 184, 0.11) !important;
    border-radius: 15px !important;

    background:
        linear-gradient(
            180deg,
            rgba(26, 34, 55, 0.72),
            rgba(15, 22, 39, 0.78)
        ) !important;

    color: rgba(203, 213, 225, 0.88) !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 7px 18px rgba(0, 0, 0, 0.10) !important;

    font-size: 0.88rem !important;
    font-weight: 570 !important;
    line-height: 1 !important;
    text-align: left !important;

    cursor: pointer !important;

    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background 160ms ease,
        color 160ms ease,
        box-shadow 160ms ease !important;
}

/* Keep icons aligned and consistent */
.dgx-sidebar .dgx-nav-item > span:first-child {
    display: grid !important;
    place-items: center !important;

    width: 24px !important;
    height: 24px !important;

    font-size: 1rem !important;
    line-height: 1 !important;

    opacity: 0.78 !important;
}

/* Hover state */
.dgx-sidebar .dgx-nav-item:hover {
    transform: translateY(-1px) !important;

    border-color: rgba(103, 232, 249, 0.24) !important;

    background:
        linear-gradient(
            180deg,
            rgba(31, 42, 67, 0.84),
            rgba(18, 27, 47, 0.88)
        ) !important;

    color: rgba(241, 245, 249, 0.96) !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 10px 24px rgba(0, 0, 0, 0.15) !important;
}

/* Active card — only one card receives the strong accent */
.dgx-sidebar .dgx-nav-item.active {
    border-color: rgba(45, 212, 191, 0.44) !important;

    background:
        linear-gradient(
            135deg,
            rgba(14, 116, 144, 0.27),
            rgba(13, 148, 136, 0.14)
        ) !important;

    color: rgba(240, 253, 250, 0.98) !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.055),
        0 0 0 1px rgba(45, 212, 191, 0.06),
        0 10px 28px rgba(13, 148, 136, 0.13) !important;
}

.dgx-sidebar .dgx-nav-item.active > span:first-child {
    opacity: 1 !important;
}

/* Slim active indicator */
.dgx-sidebar .dgx-nav-item.active::before {
    content: "" !important;

    position: absolute !important;
    left: -1px !important;
    top: 12px !important;
    bottom: 12px !important;

    width: 3px !important;

    border-radius: 0 4px 4px 0 !important;

    background:
        linear-gradient(
            180deg,
            rgba(103, 232, 249, 0.98),
            rgba(45, 212, 191, 0.92)
        ) !important;

    box-shadow: 0 0 10px rgba(45, 212, 191, 0.30) !important;
}

/* Prevent legacy glow layers from visually joining cards */
.dgx-sidebar .dgx-nav-item::after {
    display: none !important;
    content: none !important;
}

/* Push footer/status controls away from the navigation cards */
.dgx-sidebar .dgx-sidebar-footer,
.dgx-sidebar .dgx-sidebar-status,
.dgx-sidebar .dgx-bottom-status {
    margin-top: auto !important;
    padding-top: 24px !important;
}

/* Compact responsive sidebar */
@media (max-width: 1100px) {
    .dgx-sidebar {
        width: 196px !important;
        min-width: 196px !important;
        padding-inline: 12px !important;
    }

    .dgx-sidebar .dgx-nav {
        gap: 10px !important;
    }

    .dgx-sidebar .dgx-nav-item {
        min-height: 47px !important;
        padding-inline: 12px !important;
    }
}

/* DGxOne Premium Sidebar v1 — END */

/* ============================================================
   DGxOne Sidebar — definitive card clearance
   Active file: Public/design/sidebar.css
   ============================================================ */

/* Navigation container */
.dgx-sidebar .dgx-nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Reset legacy margins */
.dgx-sidebar .dgx-nav > .dgx-nav-item {
    margin: 0 !important;
    transform: none !important;
}

/* Guaranteed physical separation between navigation cards */
.dgx-sidebar .dgx-nav > .dgx-nav-item + .dgx-nav-item {
    margin-top: 12px !important;
}

/* Keep every navigation card clearly independent */
.dgx-sidebar .dgx-nav-item {
    min-height: 52px !important;
    border-radius: 16px !important;
    overflow: hidden !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 7px 18px rgba(0, 0, 0, 0.18) !important;
}

/* Clear space after navigation before project card */
.dgx-sidebar .dgx-nav + * {
    margin-top: 28px !important;
}

/* Project and user/profile cards */
.dgx-sidebar .dgx-project-card,
.dgx-sidebar .dgx-active-project,
.dgx-sidebar .active-project,
.dgx-sidebar .dgx-profile-card,
.dgx-sidebar .dgx-user-card,
.dgx-sidebar .dgx-sidebar-profile {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Clear separation between lower sidebar cards */
.dgx-sidebar .dgx-project-card + *,
.dgx-sidebar .dgx-active-project + *,
.dgx-sidebar .active-project + * {
    margin-top: 24px !important;
}

/* Prevent legacy glow from connecting adjacent cards */
.dgx-sidebar .dgx-nav-item::after {
    display: none !important;
    content: none !important;
}

/* DGxOne Final Sidebar Clearance — START */

#sidebarHost > .dgx-sidebar {
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;

    width: 228px !important;
    min-width: 228px !important;
    height: 100% !important;

    padding: 20px 15px 18px !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;
}

/* Brand clearance */
#sidebarHost .dgx-logo {
    flex: 0 0 auto !important;

    margin: 0 0 24px !important;
    padding: 0 8px 4px !important;
}

/* Navigation must use real physical spacing */
#sidebarHost .dgx-nav {
    flex: 0 0 auto !important;

    display: flex !important;
    flex-direction: column !important;

    width: 100% !important;

    gap: 10px !important;

    margin: 0 !important;
    padding: 0 !important;
}

/* Individual navigation cards */
#sidebarHost .dgx-nav > .dgx-nav-item {
    position: relative !important;

    display: grid !important;
    grid-template-columns: 26px minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: 10px !important;

    box-sizing: border-box !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 50px !important;

    margin: 0 !important;
    padding: 0 14px !important;

    border-radius: 15px !important;

    transform: none !important;
    overflow: hidden !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 7px 16px rgba(0, 0, 0, 0.18) !important;
}

/* Prevent legacy negative spacing */
#sidebarHost .dgx-nav > .dgx-nav-item + .dgx-nav-item {
    margin-top: 0 !important;
}

/* Reduce the connected-glow effect */
#sidebarHost .dgx-nav > .dgx-nav-item:not(.active) {
    border-color: rgba(111, 142, 184, 0.16) !important;

    background:
        linear-gradient(
            180deg,
            rgba(24, 35, 56, 0.88),
            rgba(13, 22, 38, 0.94)
        ) !important;
}

#sidebarHost .dgx-nav > .dgx-nav-item.active {
    border-color: rgba(125, 211, 252, 0.50) !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.10),
        0 9px 22px rgba(84, 98, 255, 0.22) !important;
}

/* Remove old pseudo-elements that visually join cards */
#sidebarHost .dgx-nav > .dgx-nav-item::before,
#sidebarHost .dgx-nav > .dgx-nav-item::after {
    pointer-events: none !important;
}

/* Project card clearance */
#sidebarHost .dgx-project-card {
    flex: 0 0 auto !important;

    box-sizing: border-box !important;
    width: 100% !important;

    margin: 28px 0 0 !important;
    padding: 17px 16px !important;

    border-radius: 17px !important;
}

/* Founder/profile card clearance */
#sidebarHost .dgx-founder-card {
    flex: 0 0 auto !important;

    box-sizing: border-box !important;
    width: 100% !important;

    margin: 22px 0 0 !important;
    padding: 20px 16px !important;

    border-radius: 18px !important;
}

/* Prevent project/profile legacy positioning */
#sidebarHost .dgx-project-card,
#sidebarHost .dgx-founder-card {
    position: relative !important;
    inset: auto !important;

    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;

    transform: none !important;
}

/* Keep enough space beneath the final card */
#sidebarHost .dgx-founder-card {
    margin-bottom: 18px !important;
}

@media (max-width: 1100px) {
    #sidebarHost > .dgx-sidebar {
        width: 210px !important;
        min-width: 210px !important;
        padding-inline: 13px !important;
    }

    #sidebarHost .dgx-nav {
        gap: 9px !important;
    }

    #sidebarHost .dgx-nav > .dgx-nav-item {
        min-height: 48px !important;
    }
}

/* DGxOne Final Sidebar Clearance — END */

/* DGxOne Compact Premium Sidebar v2 — START */

#sidebarHost > .dgx-sidebar {
    box-sizing: border-box !important;

    display: flex !important;
    flex-direction: column !important;

    width: 208px !important;
    min-width: 208px !important;
    height: 100% !important;

    padding: 14px 12px 16px !important;

    border-right: 1px solid rgba(111, 142, 184, 0.13) !important;

    background:
        radial-gradient(
            circle at 45% 0%,
            rgba(34, 211, 238, 0.055),
            transparent 28%
        ),
        linear-gradient(
            180deg,
            rgba(8, 14, 27, 0.99),
            rgba(5, 10, 20, 1)
        ) !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;
}

/* ============================================================
   BRAND
   ============================================================ */

#sidebarHost .dgx-logo {
    display: grid !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 10px !important;

    width: 100% !important;

    margin: 0 0 20px !important;
    padding: 0 4px 10px !important;
}

#sidebarHost .dgx-logo-mark {
    width: 42px !important;
    height: 42px !important;

    display: grid !important;
    place-items: center !important;

    border-radius: 13px !important;

    font-size: 0.68rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;

    background:
        linear-gradient(
            145deg,
            rgba(71, 199, 255, 0.98),
            rgba(122, 78, 255, 0.98)
        ) !important;

    box-shadow:
        0 8px 24px rgba(69, 116, 255, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
}

#sidebarHost .dgx-logo h1 {
    margin: 0 !important;

    color: rgba(248, 250, 252, 0.98) !important;

    font-size: 1.08rem !important;
    font-weight: 760 !important;
    line-height: 1.04 !important;
    letter-spacing: -0.035em !important;
}

#sidebarHost .dgx-logo p {
    margin: 4px 0 0 !important;

    color: rgba(148, 163, 184, 0.82) !important;

    font-size: 0.69rem !important;
    line-height: 1.1 !important;
    letter-spacing: 0.01em !important;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

#sidebarHost .dgx-nav {
    display: flex !important;
    flex-direction: column !important;

    width: 100% !important;

    gap: 9px !important;

    margin: 0 !important;
    padding: 0 !important;
}

#sidebarHost .dgx-nav > .dgx-nav-item {
    position: relative !important;

    box-sizing: border-box !important;

    display: grid !important;
    grid-template-columns: 22px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 9px !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 45px !important;
    height: 45px !important;

    margin: 0 !important;
    padding: 0 12px !important;

    border: 1px solid rgba(111, 142, 184, 0.14) !important;
    border-radius: 12px !important;

    background:
        linear-gradient(
            180deg,
            rgba(22, 32, 51, 0.82),
            rgba(13, 21, 36, 0.92)
        ) !important;

    color: rgba(203, 213, 225, 0.82) !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 5px 14px rgba(0, 0, 0, 0.15) !important;

    font-size: 0.82rem !important;
    font-weight: 620 !important;
    line-height: 1 !important;
    text-align: left !important;

    transform: none !important;
    overflow: hidden !important;

    transition:
        transform 150ms ease,
        border-color 150ms ease,
        background 150ms ease,
        color 150ms ease,
        box-shadow 150ms ease !important;
}

#sidebarHost .dgx-nav > .dgx-nav-item > span:first-child {
    display: grid !important;
    place-items: center !important;

    width: 22px !important;
    height: 22px !important;

    font-size: 0.94rem !important;
    line-height: 1 !important;

    opacity: 0.78 !important;
}

#sidebarHost .dgx-nav > .dgx-nav-item:hover {
    transform: translateY(-1px) !important;

    border-color: rgba(103, 232, 249, 0.24) !important;

    background:
        linear-gradient(
            180deg,
            rgba(27, 40, 62, 0.9),
            rgba(16, 27, 45, 0.96)
        ) !important;

    color: rgba(241, 245, 249, 0.96) !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.035),
        0 8px 18px rgba(0, 0, 0, 0.2) !important;
}

/* Calm premium active state */
#sidebarHost .dgx-nav > .dgx-nav-item.active {
    border-color: rgba(56, 189, 248, 0.48) !important;

    background:
        linear-gradient(
            135deg,
            rgba(10, 47, 66, 0.96),
            rgba(13, 31, 49, 0.98)
        ) !important;

    color: rgba(240, 253, 250, 0.98) !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.055),
        0 0 0 1px rgba(45, 212, 191, 0.035),
        0 8px 22px rgba(8, 145, 178, 0.15) !important;
}

#sidebarHost .dgx-nav > .dgx-nav-item.active > span:first-child {
    opacity: 1 !important;
}

#sidebarHost .dgx-nav > .dgx-nav-item.active::before {
    content: "" !important;

    position: absolute !important;
    left: 0 !important;
    top: 10px !important;
    bottom: 10px !important;

    width: 3px !important;

    border-radius: 0 4px 4px 0 !important;

    background:
        linear-gradient(
            180deg,
            rgba(103, 232, 249, 1),
            rgba(45, 212, 191, 0.9)
        ) !important;

    box-shadow:
        0 0 9px rgba(45, 212, 191, 0.32) !important;
}

#sidebarHost .dgx-nav > .dgx-nav-item::after {
    display: none !important;
    content: none !important;
}

/* ============================================================
   ACTIVE PROJECT
   ============================================================ */

#sidebarHost .dgx-project-card {
    box-sizing: border-box !important;

    display: grid !important;
    gap: 3px !important;

    width: 100% !important;

    margin: 24px 0 0 !important;
    padding: 14px 14px 13px !important;

    border: 1px solid rgba(111, 142, 184, 0.16) !important;
    border-radius: 14px !important;

    background:
        linear-gradient(
            180deg,
            rgba(17, 27, 45, 0.78),
            rgba(11, 19, 32, 0.9)
        ) !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025) !important;
}

#sidebarHost .dgx-project-card span {
    color: rgba(148, 163, 184, 0.82) !important;

    font-size: 0.69rem !important;
    line-height: 1 !important;
}

#sidebarHost .dgx-project-card strong {
    color: rgba(248, 250, 252, 0.96) !important;

    font-size: 0.83rem !important;
    font-weight: 720 !important;
    line-height: 1.07 !important;
}

#sidebarHost .dgx-project-card small {
    margin-top: 3px !important;

    color: rgba(94, 234, 212, 0.92) !important;

    font-size: 0.61rem !important;
    font-weight: 720 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
}

/* ============================================================
   FOUNDER PROFILE
   ============================================================ */

#sidebarHost .dgx-founder-card {
    box-sizing: border-box !important;

    display: grid !important;
    grid-template-columns: 46px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 12px !important;

    width: 100% !important;
    min-height: 104px !important;

    margin: 18px 0 16px !important;
    padding: 16px 14px !important;

    border: 1px solid rgba(111, 142, 184, 0.13) !important;
    border-radius: 15px !important;

    background:
        linear-gradient(
            180deg,
            rgba(14, 23, 39, 0.8),
            rgba(8, 15, 27, 0.93)
        ) !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025) !important;
}

#sidebarHost .dgx-founder-orb {
    position: relative !important;

    display: grid !important;
    place-items: center !important;

    width: 46px !important;
    height: 46px !important;

    margin: 0 !important;
}

#sidebarHost .dgx-founder-ring {
    position: absolute !important;
    inset: 0 !important;

    border: 1px solid rgba(34, 211, 238, 0.42) !important;
    border-radius: 50% !important;

    box-shadow:
        0 0 14px rgba(34, 211, 238, 0.11) !important;
}

#sidebarHost .dgx-founder-core {
    display: grid !important;
    place-items: center !important;

    width: 34px !important;
    height: 34px !important;

    border-radius: 50% !important;

    color: white !important;

    font-size: 0.64rem !important;
    font-weight: 800 !important;

    background:
        linear-gradient(
            145deg,
            rgba(71, 199, 255, 1),
            rgba(122, 78, 255, 1)
        ) !important;

    box-shadow:
        0 7px 18px rgba(78, 111, 255, 0.22) !important;
}

#sidebarHost .dgx-founder-info {
    min-width: 0 !important;

    display: grid !important;
    gap: 5px !important;
}

#sidebarHost .dgx-founder-info strong {
    color: rgba(248, 250, 252, 0.98) !important;

    font-size: 0.76rem !important;
    font-weight: 720 !important;
    line-height: 1 !important;
}

#sidebarHost .dgx-founder-info small {
    color: rgba(125, 211, 252, 0.82) !important;

    font-size: 0.66rem !important;
    line-height: 1.35 !important;
}

/* Remove all legacy positioning */
#sidebarHost .dgx-logo,
#sidebarHost .dgx-project-card,
#sidebarHost .dgx-founder-card,
#sidebarHost .dgx-founder-orb,
#sidebarHost .dgx-founder-info {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
}

/* Compact scrollbar */
#sidebarHost > .dgx-sidebar::-webkit-scrollbar {
    width: 5px !important;
}

#sidebarHost > .dgx-sidebar::-webkit-scrollbar-thumb {
    border-radius: 99px !important;
    background: rgba(111, 142, 184, 0.18) !important;
}

@media (max-width: 1100px) {
    #sidebarHost > .dgx-sidebar {
        width: 196px !important;
        min-width: 196px !important;

        padding-inline: 10px !important;
    }

    #sidebarHost .dgx-nav > .dgx-nav-item {
        min-height: 43px !important;
        height: 43px !important;
    }
}

/* DGxOne Compact Premium Sidebar v2 — END */

/* DGxOne Navigation Cards — focused redesign */

#sidebarHost .dgx-nav {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

#sidebarHost .dgx-nav > .dgx-nav-item {
    width: 100% !important;
    height: 46px !important;
    min-height: 46px !important;

    margin: 0 !important;
    padding: 0 14px !important;

    border-radius: 13px !important;
    border: 1px solid rgba(116, 145, 184, 0.18) !important;

    background:
        linear-gradient(
            180deg,
            rgba(23, 34, 54, 0.92),
            rgba(13, 22, 38, 0.97)
        ) !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 5px 12px rgba(0, 0, 0, 0.18) !important;

    transform: none !important;
}

#sidebarHost .dgx-nav > .dgx-nav-item:hover {
    border-color: rgba(100, 210, 240, 0.32) !important;

    background:
        linear-gradient(
            180deg,
            rgba(29, 43, 67, 0.96),
            rgba(17, 29, 48, 0.98)
        ) !important;
}

#sidebarHost .dgx-nav > .dgx-nav-item.active {
    border-color: rgba(73, 205, 231, 0.65) !important;

    background:
        linear-gradient(
            135deg,
            rgba(11, 55, 72, 0.98),
            rgba(12, 34, 52, 0.98)
        ) !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 7px 18px rgba(20, 184, 205, 0.13) !important;
}

#sidebarHost .dgx-nav > .dgx-nav-item.active::before {
    content: "" !important;
    position: absolute !important;

    left: 0 !important;
    top: 10px !important;
    bottom: 10px !important;

    width: 3px !important;
    border-radius: 0 4px 4px 0 !important;

    background: rgba(78, 220, 235, 0.95) !important;
}

#sidebarHost .dgx-nav > .dgx-nav-item::after {
    display: none !important;
    content: none !important;
}


/* ============================================================
   FINAL FIX — physical spacing between sidebar navigation cards
   Only affects:
   Brain Lab
   Knowledge Vault
   Agent Center
   Settings
   ============================================================ */

#sidebarHost > .dgx-sidebar > nav.dgx-nav {
    display: block !important;
    width: 100% !important;

    gap: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
}

#sidebarHost > .dgx-sidebar > nav.dgx-nav > button.dgx-nav-item {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 24px minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: 10px !important;

    box-sizing: border-box !important;

    width: 100% !important;
    height: 46px !important;
    min-height: 46px !important;

    margin: 0 !important;
    padding: 0 14px !important;

    border-radius: 13px !important;

    transform: none !important;
}

/* Guaranteed 12px separation between each navigation card */
#sidebarHost > .dgx-sidebar > nav.dgx-nav >
button.dgx-nav-item + button.dgx-nav-item {
    margin-top: 12px !important;
}

/* Do not let legacy hover movement close the spacing */
#sidebarHost > .dgx-sidebar > nav.dgx-nav >
button.dgx-nav-item:hover {
    transform: none !important;
}

/* Clear separation below Settings */
#sidebarHost > .dgx-sidebar > nav.dgx-nav + .dgx-project-card {
    margin-top: 26px !important;
}


/* DGxOne sidebar navigation — visual separation polish */

#sidebarHost > .dgx-sidebar > nav.dgx-nav > button.dgx-nav-item {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.025),
        0 3px 8px rgba(0, 0, 0, 0.14) !important;
}

#sidebarHost > .dgx-sidebar > nav.dgx-nav > button.dgx-nav-item:not(.active) {
    border-color: rgba(111, 142, 184, 0.13) !important;
}

#sidebarHost > .dgx-sidebar > nav.dgx-nav > button.dgx-nav-item.active {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 5px 12px rgba(8, 145, 178, 0.11) !important;
}


/* ===== DGx AI Core Branding ===== */

.dgx-ai-core-logo{
    width:34px;
    height:34px;
    display:block;
}

.dgx-nav-icon{
    display:grid;
    place-items:center;
    width:22px;
    height:22px;

    color:#8fc8f8;

    font-size:15px;
    font-weight:700;

    opacity:.9;
}

.dgx-nav-item.active .dgx-nav-icon{
    color:#ffffff;
}
