﻿/* ==========================================================================
   YT-CENTRICBEATS-PROFILE.CSS
   Profile-Specific Stylesheet (Cleaned & De-duplicated)
   ========================================================================== */



/* --- 2. WRAPPER --- */
.cb-profile-wrapper {
    background-color: #f9f9f9;
    min-height: 100vh;
    position: relative;
}

/* --- 3. SIDEBAR (Fixed Position Strategy) --- */
.cb-profile-sidebar {
    width: 256px; 
    position: fixed; 
    top: 0; 
    left: 0;
    bottom: 0;
    overflow-y: auto; 
    z-index: 90; 
    background-color: #fff; 
    border-right: 1px solid #e0e0e0;
    padding-top: 64px;
    padding-bottom: 90px; /* Space for footer player */
    transition: width 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Sidebar Text & Links */
.cb-profile-sidebar-text, .cb-profile-header-text { opacity: 1; transition: opacity 0.2s; white-space: nowrap; margin-left: 24px; }
.cb-profile-sidebar-item { height: 48px; padding: 0 24px; cursor: pointer; display: flex; align-items: center; color: #606060; text-decoration: none; overflow: hidden; }
.cb-profile-sidebar-item:hover { background-color: #f4f4f4; color: #cc0000; }
.cb-profile-sidebar-item.active { background-color: #fce8e8; color: #cc0000; border-left: 4px solid #cc0000; padding-left: 20px; }
.cb-profile-sidebar-icon { min-width: 24px; font-size: 20px; text-align: center; display: flex; justify-content: center; }
.cb-profile-sidebar-header { padding: 24px; border-bottom: 1px solid #f0f0f0; text-align: center; overflow: hidden; white-space: nowrap; }


/* --- HELPER: Remove margin when sidebar is missing --- */
.cb-no-sidebar-gap {
    margin-left: 0 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}



/* Avatar */
.cb-profile-avatar {
    width: 80px; 
    height: 80px; 
    margin: 0 auto 10px auto; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}
.cb-profile-avatar img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* --- 4. MAIN CONTENT (Margin Strategy) --- */
.cb-profile-main {
    margin-left: 256px; /* Pushes content away from fixed sidebar */
    padding: 0px 30px 150px 30px;
    width: auto;
    background-color: #f9f9f9;
    transition: margin-left 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* --- 5. PROFILE COLUMNS (CSS Grid Strategy) --- */
.cb-profile-columns {
    display: grid;
    /* Main Content (auto-fill) | Right Sidebar (fixed 300px) */
    grid-template-columns: 1fr 300px; 
    gap: 20px;
    width: 100%;
}

.cb-profile-col-main {
    /* Flex item behavior */
    flex: 1 1 auto;        /* Grow: 1, Shrink: 1, Basis: Auto */
    
    /* Responsive Width Handling */
    width: 100%;           /* Try to fill the space... */
    max-width: 1200px;      
    min-width: 0;          /* Allow shrinking past content size */
    
    /* Centering */
    margin-left: auto;
    margin-right: auto;
}

/* Right Sidebar Sticky Widget */
.cb-profile-sidebar-sticky { position: -webkit-sticky; position: sticky; top: 90px; z-index: 5; }
.cb-profile-sidebar-box { background: #fff; border: 1px solid #e0e0e0; border-radius: 4px; padding: 15px; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }


.cb-profile-col-side { /* No specific styles needed for grid item */ }





/* Sidebar Text & Links */
/* --- PROFILE HEADER CONTAINER --- */
.cb-profile-box {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 24px;
    margin-bottom: 0;
}

.cb-profile-flex-container {
    display: flex;
    gap: 10px; /* Space between image and text */
}

/* 1. LEFT: Image */
.cb-profile-img-wrap {
    flex-shrink: 0;
}
.cb-img-circle {
    border-radius: 50%; /* YouTube style round avatars */
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid #666;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);

}

/* 2. RIGHT: Content Wrapper */
.cb-profile-content-wrap {
    flex-grow: 1;
    display: flex;
    justify-content: space-between; /* Pushes Info Left, Buttons Right */
}

/* Info Section (Name, Views) */
.cb-profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cb-profile-name {
    margin: 0 0 4px 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}
.cb-profile-name a {
    color: #0d0d0d;
    text-decoration: none;
}

.cb-profile-meta {
    font-size: 14px;
    color: #606060;
}

/* --- YOUR VERIFIED BADGE (Kept Exact) --- */
.cb-profile-verified-label { 
    display: inline-flex; 
    align-items: center; 
    font-size: 12px; 
    font-weight: 500; 
    color: #606060; 
    background-color: #f2f2f2; 
    padding: 2px 8px; 
    border-radius: 12px; 
}
.cb-profile-verified-label svg { 
    width: 14px; 
    height: 14px; 
    fill: #3ea6ff; 
    margin-right: 4px; 
}

/* --- BUTTONS CONTAINER ONLY --- */
.cb-profile-actions {
    /* Push to the BOTTOM */
    align-self: flex-end; 
    
    /* Push to the RIGHT */
    margin-left: auto;
    
 
}



.cb-profile-icon {
    display: inline-flex;       /* Forces the box to wrap around the icon */
    align-items: center;        /* Centers vertically */
    justify-content: center;    /* Centers horizontally */
    vertical-align: middle;     /* Fixes alignment with other text/buttons */
    
    text-decoration: none;      /* Removes underline */
    line-height: 1;             /* Resets line height so it doesn't get cut off */
    
    /* Optional: Add a subtle hover effect so people know it's clickable */
    opacity: 0.8;
    transition: opacity 0.2s;
}

.cb-profile-icon:hover {
    opacity: 1;
}




















/* Analytics Buttons */
.cb-profile-range-btn { display: inline-block; padding: 4px 10px; font-size: 11px; font-weight: 500; color: #606060; background: #f0f0f0; border-radius: 12px; text-decoration: none; transition: all 0.2s; }
.cb-profile-range-btn:hover { background: #e0e0e0; color: #0d0d0d; }
.cb-profile-range-btn.active { background: #0d0d0d; color: #fff; }

/* Fixed Footer Player */
.cb-profile-footer-player {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: auto;
    background: #fff;
    z-index: 2147483647; 
    transform: translate3d(0,0,0); -webkit-transform: translate3d(0,0,0);
}



/* --- 7. RESPONSIVE BREAKPOINTS --- */

/* Tablet & Smaller Desktop (1200px and down) */
@media (max-width: 1200px) {
    /* 1. Shrink Fixed Sidebar */
    .cb-profile-sidebar { width: 72px; }
    .cb-profile-sidebar-text, .cb-profile-header-text { opacity: 0; width: 0; margin: 0; display: none; }
    .cb-profile-avatar { width: 40px; height: 40px; }
    .cb-profile-sidebar-header { padding: 10px 0; }
    .cb-profile-sidebar-item { padding: 0; justify-content: center; }

    /* 2. Adjust Main Content Margin */
    .cb-profile-main { margin-left: 72px; padding-left: 15px; padding-right: 15px; }

  
}


@media (max-width: 900px) {
    /* 3. Stack Layout (Grid becomes 1 column) */
    .cb-profile-columns { 
        grid-template-columns: 1fr; 
    }
    .cb-profile-col-side { 
        width: 100%; 
    }
}

/* Mobile Phones (600px and down) */
@media (max-width: 600px) {
    .cb-profile-sticky-menu { top: 0px; }
    
    /* Optional: Hide sidebar completely on very small screens? 
       If yes, uncomment below: */
    /* .cb-profile-sidebar { display: none; } 
    .cb-profile-main { margin-left: 0; }
    */
}

/* --- STATS HUB SECTION (Renamed from .dashboard-header-section) --- */
.cb-profile-header-section {
    margin-bottom: 30px;
}

.cb-profile-card-header-text {
    margin-bottom: 15px;
    color: #606060;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

/* --- HERO GRID (Renamed from .stats-hero-grid) --- */
.cb-profile-stats-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.cb-profile-stat-hero-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.cb-profile-stat-hero-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
}

.cb-profile-stat-hero-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f4f8ff; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.cb-profile-stat-hero-data h3 {
    margin: 0;
    font-size: 22px;
    color: #0d0d0d;
    font-weight: 700;
}
.cb-profile-stat-hero-data span {
    font-size: 13px;
    color: #606060;
}

/* --- MEDIA BREAKDOWN GRID (Renamed from .stats-media-grid) --- */
.cb-profile-stats-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cb-profile-stat-media-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
}

.cb-profile-stat-media-header {
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.cb-profile-stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
    color: #555;
}
.cb-profile-stat-val {
    font-weight: 600;
    color: #0d0d0d;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1000px) {
    .cb-profile-stats-hero-grid, 
    .cb-profile-stats-media-grid {
        grid-template-columns: 1fr; 
    }
}




/* ====================================================
   MOBILE GAP FIX (ISOLATED)
   Paste at the very bottom of your CSS file.
   ==================================================== */
@media screen and (max-width: 600px) {
    
    /* 1. Remove the 256px/72px margin so content touches the left wall */
    .cb-profile-main {
        margin-left: 0px !important; 
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
    }

    /* 2. Hide the Sidebar completely */
    .cb-profile-sidebar {
        display: none !important;
        width: 0px !important;
    }

    /* 3. Stack the columns vertically (Single Column Mode) */
    .cb-profile-columns {
        display: block !important;
    }
    
    /* 4. Ensure the Right Sidebar (Widgets) fills the width when stacked */
    .cb-profile-col-side {
        width: 100% !important;
        margin-top: 10px;
    }
}



/* ====================================================
   DESKTOP AUTO-DROPDOWN STYLES
   ==================================================== */

/* --- DESKTOP (901px+) --- */
@media (min-width: 901px) {
    #cb-profile-priority-nav {
        display: flex;
        align-items: center;
        overflow: visible; /* Allows dropdown to pop out */
        width: 100%;
    }

    /* The Main List */
/* Quick check: Make sure this part exists in your CSS under the Desktop Media Query */
.cb-profile-nav-links {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden; 
    align-items: center;
    flex-grow: 1; /* <-- IMPORTANT: This ensures the list tries to fill the space */
}

    /* The "More" Container */
    .cb-profile-nav-more {
        position: relative;
        display: none; /* Hidden by default, JS toggles this */
        margin-left: auto;
        flex-shrink: 0;
    }

    /* The "More" Button */
    .cb-profile-nav-more-btn {
        background: transparent;
        border: none;
        padding: 12px 15px;
        font-weight: bold;
        color: #606060;
        cursor: pointer;
        font-size: 14px;
    }
    .cb-profile-nav-more-btn:hover {
        background-color: #f4f4f4;
        color: #000;
    }

    /* The Dropdown List */
    .cb-profile-nav-dropdown {
        display: none; /* Hidden until hover */
        position: absolute;
        top: 100%;
        right: 0;
        background: #fff;
        border: 1px solid #ddd;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        min-width: 160px;
        z-index: 1000;
        list-style: none;
        padding: 0;
    }

    /* Show Dropdown on Hover */
    .cb-profile-nav-more:hover .cb-profile-nav-dropdown {
        display: block;
    }

    /* Dropdown Links */
    .cb-profile-nav-dropdown li a {
        display: block;
        padding: 10px 15px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #eee;
        white-space: nowrap;
    }
    .cb-profile-nav-dropdown li a:hover {
        background-color: #f4f4f4;
    }
}

/* --- MOBILE OVERRIDE (Safety Check) --- */
@media (max-width: 900px) {
    .cb-profile-nav-more { display: none !important; }
}







/* --- 6. COMPONENTS & WIDGETS --- */

/* Profile Box */
.cb-profile-box { background: #fff; border-radius: 12px 12px 0 0; padding: 15px; box-shadow: 0 1px 3px rgba(0,0,0,0.1); border-bottom: 1px solid #f0f0f0; margin-bottom: 0; }
.cb-profile-widget-table { width: 100%; }
.cb-profile-widget-img-cell { width: 80px; vertical-align: top; }
.cb-profile-widget-content { padding-left: 15px; }
.cb-profile-widget-name { font-size: 20px; font-weight: 700; color: #0d0d0d; display: block; margin-bottom: 5px; }
.cb-profile-widget-views { font-size: 13px; color: #606060; }






/* --- MAKE MENU STICKY --- */
.yt-sticky-menu {
    position: -webkit-sticky !important;
    position: sticky !important;
    
    /* Change '50px' to the exact height of your main webimages header */
    top: 38px !important; 
    
    z-index: 99 !important;
    background-color: #ffffff !important;
    width: 100% !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}







/* --- MAKE MENU STICKY --- */
.cb-profile-sticky-menu {
    position: -webkit-sticky !important;
    position: sticky !important;
    
    /* Change '50px' to the exact height of your main webimages header */
    top: 38px !important; 
    
    z-index: 99 !important;
    background-color: #ffffff !important;
    width: 100% !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}


/* Profile Menu Links */
#priority-nav { position: relative; display: flex; justify-content: space-between; align-items: center; padding: 0 10px; }
#priority-nav .nav-links { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; flex-wrap: nowrap; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; }
#priority-nav .nav-links::-webkit-scrollbar { display: none; }
#priority-nav .nav-links a { display: block; padding: 12px 15px; text-decoration: none; color: #606060; font-weight: 500; font-size: 14px; white-space: nowrap; border-bottom: 2px solid transparent; text-transform: capitalize; }
#priority-nav .nav-links a:hover { color: #000; background-color: #f4f4f4; }
#priority-nav .nav-links .active a { color: #6300a5; border-bottom-color: #6300a5; }








/* --- MENU DROPDOWN (The "More" Button) --- */
.nav-more {
    position: relative;
    display: none; /* Hidden by default, JS enables it */
    margin-left: 10px;
}

.nav-more-btn {
    background: transparent;
    border: none;
    padding: 12px 16px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    color: #606060;
}
.nav-more-btn:hover {
    color: #0d0d0d;
    background-color: #f4f4f4;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    list-style: none;
    margin: 0;
    padding: 5px 0;
    z-index: 100;
    width: 200px;
    display: none;
}

.nav-more.is-open .nav-dropdown {
    display: block;
}

.nav-dropdown a {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #606060;
    font-size: 14px;
    font-weight: 500;
}
.nav-dropdown a:hover {
    background-color: #f4f4f4;
    color: #0d0d0d;
}




/* ====================================================
   FIX: MOBILE STICKY MENU
   ==================================================== */
@media screen and (max-width: 900px) {
    
    .yt-sticky-menu {
        position: -webkit-sticky !important;
        position: sticky !important;
        
        /* IMPORTANT: This pushes the menu down so it sits UNDER your fixed header.
           If there is a gap, lower this number (e.g., 40px). 
           If it hides behind the header, raise it (e.g., 60px). */
        top: 50px !important; 
        
        z-index: 1000 !important; /* Ensures it sits on top of profile content */
        background: #fff !important;
        width: 100% !important;
        display: block !important;
    }

    /* Safety Check: Sticky positioning breaks if any parent has overflow:hidden.
       This ensures the parents allow sticking. */
    .cb-profile-main, 
    .cb-profile-columns, 
    .cb-profile-col-main {
        overflow: visible !important; 
    }
}







/* --- 6. DASHBOARD & PROFILE GRIDS --- */
/* Dashboard Cards */
.yt-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.yt-title { font-size: 24px; font-weight: 500; }
.yt-chart-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 6px; padding: 24px; margin-bottom: 24px; }
.yt-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; margin-bottom: 24px;}
.yt-grid-2 { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.yt-card { background: #fff; border: 1px solid #e0e0e0; border-radius: 6px; padding: 20px; display: flex; flex-direction: column; }
.yt-card-header { font-size: 16px; font-weight: 500; margin-bottom: 15px; display:flex; justify-content:space-between;}
.yt-content-row { display: flex; align-items: center; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.yt-thumb-mini { width: 50px; height: 28px; background: #333; margin-right: 15px; border-radius: 2px; }
@media (max-width: 768px) { .yt-grid-3, .yt-grid-2 { grid-template-columns: 1fr; } }



/* --- STATS HUB SECTION --- */
.dashboard-header-section {
    margin-bottom: 30px;
}

.dashboard-card-header {
    margin-bottom: 15px;
    color: #606060;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

/* --- HERO GRID (Top 3 Cards: Balance, Views, Streams) --- */
.stats-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.stat-hero-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}
.stat-hero-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
}

.stat-hero-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f4f8ff; /* Default light blue bg */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.stat-hero-data h3 {
    margin: 0;
    font-size: 22px;
    color: #0d0d0d;
    font-weight: 700;
}
.stat-hero-data span {
    font-size: 13px;
    color: #606060;
}

/* --- MEDIA BREAKDOWN GRID (Audio, Video, Blog) --- */
.stats-media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-media-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
}

.stat-media-header {
    font-weight: 600;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
    color: #555;
}
.stat-val {
    font-weight: 600;
    color: #0d0d0d;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1000px) {
    .stats-hero-grid, 
    .stats-media-grid {
        grid-template-columns: 1fr; /* Stack visually on mobile */
    }
}

/* --- 2. DASHBOARD WRAPPER --- */
.yt-dashboard-wrapper {
    display: flex;
    background-color: #f9f9f9;
    font-family: 'Roboto', sans-serif;
    color: #0d0d0d;
    min-height: 100vh;
    position: relative;
}



/* --- 3. SIDEBAR (Flush, Sticky & Smooth) --- */
.yt-sidebar {
    width: 256px; min-width: 256px;
    background-color: #fff; border-right: 1px solid #e0e0e0;
    
    position: sticky; top: 0; 
    overflow-y: auto; overflow-x: hidden;
    
    margin-top: -40px; padding-top: 64px; height: calc(100vh + 40px);
    
    z-index: 90; padding-bottom: 90px;
    transition: width 0.3s cubic-bezier(0.4, 0.0, 0.2, 1), min-width 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.yt-sidebar-text, .yt-header-text { opacity: 1; transition: opacity 0.2s; white-space: nowrap; margin-left: 24px; }
.yt-sidebar-item { height: 48px; padding: 0 24px; cursor: pointer; display: flex; align-items: center; color: #606060; text-decoration: none; overflow: hidden; }
.yt-sidebar-item:hover { background-color: #f4f4f4; color: #cc0000; }
.yt-sidebar-item.active { background-color: #fce8e8; color: #cc0000; border-left: 4px solid #cc0000; padding-left: 20px; }
.yt-sidebar-icon { min-width: 24px; font-size: 20px; text-align: center; display: flex; justify-content: center; }
.yt-sidebar-header { padding: 24px; border-bottom: 1px solid #f0f0f0; text-align: center; overflow: hidden; white-space: nowrap; }
/* --- UPDATED AVATAR STYLE --- */
.yt-avatar {
    /* 1. "A little bigger" (Was 60px) */
    width: 80px; 
    height: 80px; 
    
    /* Center it */
    margin: 0 auto 10px auto; 
    
    /* Flex alignment for the fallback "?" text */
    display: flex; 
    align-items: center; 
    justify-content: center;
}

/* Force the Jamroom Image to be Circular */
.yt-avatar img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important; /* Makes it a circle */
    object-fit: cover; /* Prevents stretching/squishing */
    border: 2px solid #fff; /* Optional: Clean white ring */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle drop shadow */
}
/* Desktop Mini Mode (< 1000px) */
@media (max-width: 1000px) {
    .yt-sidebar { width: 72px; min-width: 72px; }
    .yt-sidebar-text, .yt-header-text { opacity: 0; width: 0; margin: 0; }
    .yt-avatar { width: 60px; height: 60px; font-size: 16px; margin-bottom: 0; }
    .yt-sidebar-header { padding: 16px 0; }
    .yt-sidebar-item { padding: 0; justify-content: center; }
    .yt-sidebar-item.active { padding-left: 0; border-left: 4px solid #cc0000; }
}

/* --- 4. MAIN CONTENT --- */
.yt-main {
    flex-grow: 1;
    background-color: #f9f9f9;
    padding-top: 60px; padding-left: 30px; padding-right: 30px; padding-bottom: 150px;
    width: 100%; box-sizing: border-box;
}
@media (max-width: 1000px) { .yt-main { padding-left: 20px; padding-right: 20px; } }
@media (max-width: 768px) { .yt-main { padding: 40px 15px 140px 15px; } }
















