/* _content/sentientXv5/Components/Layout/AdminMainLayout.razor.rz.scp.css */
/* AdminMainLayout.razor.css */

/* Optional: keep Blazor error UI */
#blazor-error-ui[b-j6a7ra65vq] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-j6a7ra65vq] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/sentientXv5/Components/Layout/AdminNavMenu.razor.rz.scp.css */
/* ===============================
   NAV MENU — RESPONSIVE (2 LEVEL)
   =============================== */

.site-menu[b-59d7hx79mh] {
    --bg: #232632;
    --panel: linear-gradient(135deg,#4e525b,#35383f);
    --overlay-bg: #2b3040;
    --text: #f7f8fc;
    --border: #999ca3;
    --ring: rgba(0,0,0,0.25);
    --grad: linear-gradient(135deg,#aeb4c1,#757b89);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 6px 20px rgba(0,0,0,.4);
    display: flex;
    justify-content: center;
    padding: 10px 16px;
    min-height: 55px;
}

    /* ---------- inner ---------- */
    .site-menu .inner[b-59d7hx79mh] {
        position: relative;
        width: 100%;
        max-width: 1200px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* ---------- MENU ---------- */
    .site-menu .menu[b-59d7hx79mh] {
        display: flex;
    }

        .site-menu .menu > ul[b-59d7hx79mh] {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 8px;
        }

    /* ---------- TABS ---------- */
    .site-menu .tab[b-59d7hx79mh] {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 10px 14px;
        border-radius: 999px;
        text-decoration: none;
        color: var(--text);
        background: transparent;
        font-weight: 600;
        transition: background .15s,color .15s,box-shadow .15s;
    }

        .site-menu .tab[b-59d7hx79mh]::before {
            content: "⮞";
            font-size: 13px;
            margin-right: 2px;
            opacity: .9;
        }

    /* ---------- DESKTOP HOVER ---------- */
    .site-menu .menu > ul > li.has-dd[b-59d7hx79mh] {
        position: relative;
        padding-bottom: 8px;
    }

        .site-menu .menu > ul > li.has-dd[b-59d7hx79mh]::after {
            content: "";
            position: absolute;
            left: -8px;
            right: -8px;
            bottom: -14px;
            height: 22px;
        }

        .site-menu .menu > ul > li > .tab:hover[b-59d7hx79mh],
        .site-menu .menu > ul > li.has-dd:hover > .tab[b-59d7hx79mh] {
            background-image: var(--grad);
            color: #fff;
            box-shadow: 0 8px 22px var(--ring);
        }

    /* ---------- DROPDOWN ---------- */
    .site-menu .dd[b-59d7hx79mh] {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        display: none;
        background: #3c404c;
        border: 1px solid var(--border);
        border-radius: 12px;
        box-shadow: 0 18px 50px rgba(0,0,0,.5);
        padding: 8px;
        z-index: 100000;
        white-space: nowrap;
    }

        .site-menu .dd > ul[b-59d7hx79mh] {
            list-style: none;
            margin: 0;
            padding: 4px;
        }

        .site-menu .dd a[b-59d7hx79mh] {
            display: flex;
            align-items: center;
            gap: 4px;
            width: 100%;
            padding: 8px 10px;
            border-radius: 10px;
            text-decoration: none;
            color: var(--text);
            font-size: 14px;
            line-height: 1.4;
        }

            .site-menu .dd a[b-59d7hx79mh]::before {
                content: "▶";
                font-size: 8px;
            }

            .site-menu .dd a:hover[b-59d7hx79mh] {
                color: #fff;
                background-image: var(--grad);
            }

/* desktop hover only */
@media (hover:hover) and (pointer:fine) {
    .site-menu .menu > ul > li.has-dd:hover > .dd[b-59d7hx79mh] {
        display: block;
    }
}

/* ---------- HAMBURGER (MOBILE ONLY) ---------- */
.site-menu .hamburger[b-59d7hx79mh] {
    display: none;
}

@media (max-width: 900px) {

    .site-menu .hamburger[b-59d7hx79mh] {
        display: inline-block;
        position: absolute;
        top: 8px;
        right: 12px;
        width: 34px;
        height: 24px;
        cursor: pointer;
        border: 0;
        background: var(--bg);
        border-radius: 6px;
        padding: 6px;
        z-index: 100005;
    }

        .site-menu .hamburger span[b-59d7hx79mh],
        .site-menu .hamburger[b-59d7hx79mh]::before,
        .site-menu .hamburger[b-59d7hx79mh]::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: transform .25s,opacity .2s;
        }

        .site-menu .hamburger span[b-59d7hx79mh] {
            top: 50%;
            transform: translateY(-50%);
        }

        .site-menu .hamburger[b-59d7hx79mh]::before {
            top: 0;
        }

        .site-menu .hamburger[b-59d7hx79mh]::after {
            bottom: 0;
        }

        .site-menu .hamburger.is-open[b-59d7hx79mh]::before {
            transform: translateY(11px) rotate(45deg);
        }

        .site-menu .hamburger.is-open[b-59d7hx79mh]::after {
            transform: translateY(-11px) rotate(-45deg);
        }

        .site-menu .hamburger.is-open span[b-59d7hx79mh] {
            opacity: 0;
        }

    /* ---------- MOBILE MENU ---------- */
    .site-menu .menu[b-59d7hx79mh] {
        display: none;
    }

    .site-menu.is-open .menu[b-59d7hx79mh] {
        display: block;
        position: fixed;
        inset: 0;
        background: var(--overlay-bg);
        z-index: 100002;
        overflow-y: auto;
        padding: 70px 12px 20px;
    }

    .site-menu .menu > ul[b-59d7hx79mh] {
        flex-direction: column;
        gap: 0;
    }

    .site-menu .tab[b-59d7hx79mh] {
        display: block;
        width: 100%;
        background: var(--panel);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 8px;
        padding: 8px 10px;
        margin: 1px 0;
        font-size: 14px;
        text-align: left;
    }

    .site-menu .dd[b-59d7hx79mh] {
        position: static;
        display: block;
        box-shadow: none;
        border-radius: 8px;
        margin-top: 4px;
    }
}

/* ---------- LINK RESET ---------- */
.site-menu a[b-59d7hx79mh],
.site-menu a:visited[b-59d7hx79mh] {
    color: var(--text);
    text-decoration: none;
}
/* _content/sentientXv5/Components/Layout/MainLayout.razor.rz.scp.css */
/* AdminMainLayout.razor.css */

/* Optional: keep Blazor error UI */
#blazor-error-ui[b-flxy3kmcm6] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-flxy3kmcm6] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/sentientXv5/Components/Layout/NavMenu.razor.rz.scp.css */
/* ===============================
   NAV MENU — RESPONSIVE (2 LEVEL)
   =============================== */

.site-menu[b-zglbpdc9zk] {
    --bg: #232632;
    --panel: linear-gradient(135deg,#4e525b,#35383f);
    --overlay-bg: #2b3040;
    --text: #f7f8fc;
    --border: #999ca3;
    --ring: rgba(0,0,0,0.25);
    --grad: linear-gradient(135deg,#aeb4c1,#757b89);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 6px 20px rgba(0,0,0,.4);
    display: flex;
    justify-content: center;
    padding: 10px 16px;
    min-height: 55px;
}

    /* ---------- inner ---------- */
    .site-menu .inner[b-zglbpdc9zk] {
        position: relative;
        width: 100%;
        max-width: 1200px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* ---------- MENU ---------- */
    .site-menu .menu[b-zglbpdc9zk] {
        display: flex;
    }

        .site-menu .menu > ul[b-zglbpdc9zk] {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 8px;
        }

    /* ---------- TABS ---------- */
    .site-menu .tab[b-zglbpdc9zk] {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 10px 14px;
        border-radius: 999px;
        text-decoration: none;
        color: var(--text);
        background: transparent;
        font-weight: 600;
        transition: background .15s,color .15s,box-shadow .15s;
    }

        .site-menu .tab[b-zglbpdc9zk]::before {
            content: "⮞";
            font-size: 13px;
            margin-right: 2px;
            opacity: .9;
        }

    /* ---------- DESKTOP HOVER ---------- */
    .site-menu .menu > ul > li.has-dd[b-zglbpdc9zk] {
        position: relative;
        padding-bottom: 8px;
    }

        .site-menu .menu > ul > li.has-dd[b-zglbpdc9zk]::after {
            content: "";
            position: absolute;
            left: -8px;
            right: -8px;
            bottom: -14px;
            height: 22px;
        }

        .site-menu .menu > ul > li > .tab:hover[b-zglbpdc9zk],
        .site-menu .menu > ul > li.has-dd:hover > .tab[b-zglbpdc9zk] {
            background-image: var(--grad);
            color: #fff;
            box-shadow: 0 8px 22px var(--ring);
        }

    /* ---------- DROPDOWN ---------- */
    .site-menu .dd[b-zglbpdc9zk] {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        display: none;
        background: #3c404c;
        border: 1px solid var(--border);
        border-radius: 12px;
        box-shadow: 0 18px 50px rgba(0,0,0,.5);
        padding: 8px;
        z-index: 100000;
        white-space: nowrap;
    }

        .site-menu .dd > ul[b-zglbpdc9zk] {
            list-style: none;
            margin: 0;
            padding: 4px;
        }

        .site-menu .dd a[b-zglbpdc9zk] {
            display: flex;
            align-items: center;
            gap: 4px;
            width: 100%;
            padding: 8px 10px;
            border-radius: 10px;
            text-decoration: none;
            color: var(--text);
            font-size: 14px;
            line-height: 1.4;
        }

            .site-menu .dd a[b-zglbpdc9zk]::before {
                content: "▶";
                font-size: 8px;
            }

            .site-menu .dd a:hover[b-zglbpdc9zk] {
                color: #fff;
                background-image: var(--grad);
            }

/* desktop hover only */
@media (hover:hover) and (pointer:fine) {
    .site-menu .menu > ul > li.has-dd:hover > .dd[b-zglbpdc9zk] {
        display: block;
    }
}

/* ---------- HAMBURGER (MOBILE ONLY) ---------- */
.site-menu .hamburger[b-zglbpdc9zk] {
    display: none;
}

@media (max-width: 900px) {

    .site-menu .hamburger[b-zglbpdc9zk] {
        display: inline-block;
        position: absolute;
        top: 8px;
        right: 12px;
        width: 34px;
        height: 24px;
        cursor: pointer;
        border: 0;
        background: var(--bg);
        border-radius: 6px;
        padding: 6px;
        z-index: 100005;
    }

        .site-menu .hamburger span[b-zglbpdc9zk],
        .site-menu .hamburger[b-zglbpdc9zk]::before,
        .site-menu .hamburger[b-zglbpdc9zk]::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: transform .25s,opacity .2s;
        }

        .site-menu .hamburger span[b-zglbpdc9zk] {
            top: 50%;
            transform: translateY(-50%);
        }

        .site-menu .hamburger[b-zglbpdc9zk]::before {
            top: 0;
        }

        .site-menu .hamburger[b-zglbpdc9zk]::after {
            bottom: 0;
        }

        .site-menu .hamburger.is-open[b-zglbpdc9zk]::before {
            transform: translateY(11px) rotate(45deg);
        }

        .site-menu .hamburger.is-open[b-zglbpdc9zk]::after {
            transform: translateY(-11px) rotate(-45deg);
        }

        .site-menu .hamburger.is-open span[b-zglbpdc9zk] {
            opacity: 0;
        }

    /* ---------- MOBILE MENU ---------- */
    .site-menu .menu[b-zglbpdc9zk] {
        display: none;
    }

    .site-menu.is-open .menu[b-zglbpdc9zk] {
        display: block;
        position: fixed;
        inset: 0;
        background: var(--overlay-bg);
        z-index: 100002;
        overflow-y: auto;
        padding: 70px 12px 20px;
    }

    .site-menu .menu > ul[b-zglbpdc9zk] {
        flex-direction: column;
        gap: 0;
    }

    .site-menu .tab[b-zglbpdc9zk] {
        display: block;
        width: 100%;
        background: var(--panel);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 8px;
        padding: 8px 10px;
        margin: 1px 0;
        font-size: 14px;
        text-align: left;
    }

    .site-menu .dd[b-zglbpdc9zk] {
        position: static;
        display: block;
        box-shadow: none;
        border-radius: 8px;
        margin-top: 4px;
    }
}

/* ---------- LINK RESET ---------- */
.site-menu a[b-zglbpdc9zk],
.site-menu a:visited[b-zglbpdc9zk] {
    color: var(--text);
    text-decoration: none;
}
/* _content/sentientXv5/Components/Layout/TraderMainLayout.razor.rz.scp.css */
/* AdminMainLayout.razor.css */

/* Optional: keep Blazor error UI */
#blazor-error-ui[b-5g6kf5we41] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-5g6kf5we41] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/sentientXv5/Components/Layout/TraderNavMenu.razor.rz.scp.css */
/* ===============================
   NAV MENU — RESPONSIVE (2 LEVEL)
   =============================== */

.site-menu[b-ywya8vhcza] {
    --bg: #232632;
    --panel: linear-gradient(135deg,#4e525b,#35383f);
    --overlay-bg: #2b3040;
    --text: #f7f8fc;
    --border: #999ca3;
    --ring: rgba(0,0,0,0.25);
    --grad: linear-gradient(135deg,#aeb4c1,#757b89);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 6px 20px rgba(0,0,0,.4);
    display: flex;
    justify-content: center;
    padding: 10px 16px;
    min-height: 55px;
}

    /* ---------- inner ---------- */
    .site-menu .inner[b-ywya8vhcza] {
        position: relative;
        width: 100%;
        max-width: 1200px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* ---------- MENU ---------- */
    .site-menu .menu[b-ywya8vhcza] {
        display: flex;
    }

        .site-menu .menu > ul[b-ywya8vhcza] {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            gap: 8px;
        }

    /* ---------- TABS ---------- */
    .site-menu .tab[b-ywya8vhcza] {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 10px 14px;
        border-radius: 999px;
        text-decoration: none;
        color: var(--text);
        background: transparent;
        font-weight: 600;
        transition: background .15s,color .15s,box-shadow .15s;
    }

        .site-menu .tab[b-ywya8vhcza]::before {
            content: "⮞";
            font-size: 13px;
            margin-right: 2px;
            opacity: .9;
        }

    /* ---------- DESKTOP HOVER ---------- */
    .site-menu .menu > ul > li.has-dd[b-ywya8vhcza] {
        position: relative;
        padding-bottom: 8px;
    }

        .site-menu .menu > ul > li.has-dd[b-ywya8vhcza]::after {
            content: "";
            position: absolute;
            left: -8px;
            right: -8px;
            bottom: -14px;
            height: 22px;
        }

        .site-menu .menu > ul > li > .tab:hover[b-ywya8vhcza],
        .site-menu .menu > ul > li.has-dd:hover > .tab[b-ywya8vhcza] {
            background-image: var(--grad);
            color: #fff;
            box-shadow: 0 8px 22px var(--ring);
        }

    /* ---------- DROPDOWN ---------- */
    .site-menu .dd[b-ywya8vhcza] {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        display: none;
        background: #3c404c;
        border: 1px solid var(--border);
        border-radius: 12px;
        box-shadow: 0 18px 50px rgba(0,0,0,.5);
        padding: 8px;
        z-index: 100000;
        white-space: nowrap;
    }

        .site-menu .dd > ul[b-ywya8vhcza] {
            list-style: none;
            margin: 0;
            padding: 4px;
        }

        .site-menu .dd a[b-ywya8vhcza] {
            display: flex;
            align-items: center;
            gap: 4px;
            width: 100%;
            padding: 8px 10px;
            border-radius: 10px;
            text-decoration: none;
            color: var(--text);
            font-size: 14px;
            line-height: 1.4;
        }

            .site-menu .dd a[b-ywya8vhcza]::before {
                content: "▶";
                font-size: 8px;
            }

            .site-menu .dd a:hover[b-ywya8vhcza] {
                color: #fff;
                background-image: var(--grad);
            }

/* desktop hover only */
@media (hover:hover) and (pointer:fine) {
    .site-menu .menu > ul > li.has-dd:hover > .dd[b-ywya8vhcza] {
        display: block;
    }
}

/* ---------- HAMBURGER (MOBILE ONLY) ---------- */
.site-menu .hamburger[b-ywya8vhcza] {
    display: none;
}

@media (max-width: 900px) {

    .site-menu .hamburger[b-ywya8vhcza] {
        display: inline-block;
        position: absolute;
        top: 8px;
        right: 12px;
        width: 34px;
        height: 24px;
        cursor: pointer;
        border: 0;
        background: var(--bg);
        border-radius: 6px;
        padding: 6px;
        z-index: 100005;
    }

        .site-menu .hamburger span[b-ywya8vhcza],
        .site-menu .hamburger[b-ywya8vhcza]::before,
        .site-menu .hamburger[b-ywya8vhcza]::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: transform .25s,opacity .2s;
        }

        .site-menu .hamburger span[b-ywya8vhcza] {
            top: 50%;
            transform: translateY(-50%);
        }

        .site-menu .hamburger[b-ywya8vhcza]::before {
            top: 0;
        }

        .site-menu .hamburger[b-ywya8vhcza]::after {
            bottom: 0;
        }

        .site-menu .hamburger.is-open[b-ywya8vhcza]::before {
            transform: translateY(11px) rotate(45deg);
        }

        .site-menu .hamburger.is-open[b-ywya8vhcza]::after {
            transform: translateY(-11px) rotate(-45deg);
        }

        .site-menu .hamburger.is-open span[b-ywya8vhcza] {
            opacity: 0;
        }

    /* ---------- MOBILE MENU ---------- */
    .site-menu .menu[b-ywya8vhcza] {
        display: none;
    }

    .site-menu.is-open .menu[b-ywya8vhcza] {
        display: block;
        position: fixed;
        inset: 0;
        background: var(--overlay-bg);
        z-index: 100002;
        overflow-y: auto;
        padding: 70px 12px 20px;
    }

    .site-menu .menu > ul[b-ywya8vhcza] {
        flex-direction: column;
        gap: 0;
    }

    .site-menu .tab[b-ywya8vhcza] {
        display: block;
        width: 100%;
        background: var(--panel);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 8px;
        padding: 8px 10px;
        margin: 1px 0;
        font-size: 14px;
        text-align: left;
    }

    .site-menu .dd[b-ywya8vhcza] {
        position: static;
        display: block;
        box-shadow: none;
        border-radius: 8px;
        margin-top: 4px;
    }
}

/* ---------- LINK RESET ---------- */
.site-menu a[b-ywya8vhcza],
.site-menu a:visited[b-ywya8vhcza] {
    color: var(--text);
    text-decoration: none;
}
