<style>

    /* 1. Dashboard Variables & Base */

    :root {

        --bg-dark: #070b13;

        --glass-bg: rgba(255, 255, 255, 0.03);

        --glass-border: rgba(255, 255, 255, 0.08);

        --neon-blue: #00d2ff;

        --neon-green: #39ff14;

        --neon-purple: #9d50bb;

    }



    .custom-dashboard { padding-top: 20px; padding-bottom: 90px; background: var(--bg-dark); }



    /* 2. FORCE HIDE TOP ELEMENTS (Dash, Trade, Logs & Hamburger) */

    @media (max-width: 991px) {

        .sidebar-open-btn, 

        .header-trigger, 

        .sidebar-menu-show-hide, 

        .sidebar-menu,

        header .nav-right, 

        header .navbar-nav,

        header .menu-right,

        .navbar-collapse,

        .header-short-menu { 

            display: none !important; 

        }

        

        /* Notification Bars Hide */

        .custom--card:has(.la-bell), 

        #allow-notification-bar,

        [class*="notification-bar"] { 

            display: none !important; 

        }

    }



    /* 3. Stats Grid & Glow Cards */

    .stats-grid {

        display: grid;

        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

        gap: 20px;

        margin-top: 10px;

    }



    .stat-card-glow {

        background: var(--glass-bg);

        border: 1px solid var(--glass-border);

        border-radius: 15px;

        padding: 22px;

        position: relative;

        overflow: hidden;

        transition: all 0.4s ease;

        display: flex;

        align-items: center;

        gap: 15px;

        backdrop-filter: blur(10px);

    }



    .stat-card-glow.blue { border-left: 3px solid var(--neon-blue); }

    .stat-card-glow.green { border-left: 3px solid var(--neon-green); }

    .stat-card-glow.red { border-left: 3px solid #ff4b2b; }

    .stat-card-glow.purple { border-left: 3px solid var(--neon-purple); }



    .stat-card-glow:hover {

        transform: translateY(-5px);

        background: rgba(255, 255, 255, 0.06);

    }



    .icon-wrap {

        width: 48px; height: 48px;

        border-radius: 12px;

        display: flex; align-items: center; justify-content: center;

        font-size: 22px;

        background: rgba(0, 0, 0, 0.2);

    }



    .blue .icon-wrap { color: var(--neon-blue); text-shadow: 0 0 10px var(--neon-blue); }

    .green .icon-wrap { color: var(--neon-green); text-shadow: 0 0 10px var(--neon-green); }



    .stat-info .label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; margin: 0; }

    .stat-info .amount { font-size: 20px; font-weight: 700; color: #fff; margin: 0; }



    /* 4. Modern Table Styling */

    .modern-table { width: 100%; border-collapse: separate; border-spacing: 0 8px; }

    .modern-table tbody tr { background: rgba(255, 255, 255, 0.02); transition: 0.3s; }

    .modern-table td { padding: 12px 15px; color: #ced4da; border: none; }

    .modern-table td:first-child { border-radius: 10px 0 0 10px; }

    .modern-table td:last-child { border-radius: 0 10px 10px 0; }



    /* 5. Mobile Responsive Fixes */

    @media (max-width: 991px) {

        .trade-grid { display: flex; flex-direction: column; height: auto; }

        #tv-chart-container { height: 380px !important; }

        .market-info-header { flex-wrap: wrap; gap: 10px; padding: 10px; }

        .market-info-header > div { flex: 1 1 45%; }

        

        /* Bottom Navigation Bar Fix */

        .mobile-nav-bar {

            position: fixed; bottom: 0; left: 0; width: 100%;

            height: 65px; background: #0d121d;

            border-top: 1px solid var(--glass-border);

            display: flex; justify-content: space-around; align-items: center;

            z-index: 9999; padding-bottom: env(safe-area-inset-bottom);

        }

    }

</style>
/* Profile Layout Fix */
.user-info-container {
    display: flex;
    flex-direction: column; /* Mobile par column layout */
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
}

.user-name-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.kyc-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Status Colors */
.status-verified { background: rgba(57, 255, 20, 0.1); border: 1px solid #39ff14; color: #39ff14; }
.status-pending { background: rgba(0, 210, 255, 0.1); border: 1px solid #00d2ff; color: #00d2ff; }
.status-unverified { background: rgba(255, 75, 43, 0.1); border: 1px solid #ff4b2b; color: #ff4b2b; }