/* PC Specific Elite Styles */
:root {
    --sidebar-width: 260px;
}

/* Sidebar Always Visible on PC */
.app-sidebar {
    position: fixed !important;
    top: var(--navbar-height) !important;
    bottom: 0 !important;
    left: 0 !important;
    width: var(--sidebar-width) !important;
    z-index: 1020 !important;
    visibility: visible !important;
    transform: none !important;
    background: var(--sidebar-bg) !important;
    border-right: 1px solid var(--border-color) !important;
    transition: none !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* Custom Scrollbar for Sidebar */
.app-sidebar::-webkit-scrollbar {
    width: 5px;
}
.app-sidebar::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 10px;
}
.app-sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Push Content to the Right */
.app-body {
    margin-left: var(--sidebar-width) !important;
    width: calc(100% - var(--sidebar-width)) !important;
    padding-top: var(--navbar-height) !important;
    min-height: 100vh;
    display: block;
    position: relative;
    background-color: var(--bg-light);
}

/* Sidebar Visual Enhancements */
.app-sidebar .nav-link {
    color: var(--text-muted);
    padding: 0.75rem 1.25rem;
    font-size: 0.92rem;
    font-weight: 500;
    margin: 0.3rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.app-sidebar .nav-link:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    transform: translateX(4px);
}

.app-sidebar .nav-link.active-link {
    background: linear-gradient(135deg, #5e5ce6 0%, #4f46e5 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(94, 92, 230, 0.35);
    font-weight: 600;
    border: none;
}

.app-sidebar .nav-link i {
    font-size: 1.2rem;
    margin-right: 14px;
    transition: all 0.25s ease;
}

.app-sidebar .nav-link.active-link i {
    color: #ffffff;
}

.app-sidebar .sidebar-heading {
    padding: 1.75rem 1.75rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

/* Glassmorphism Sidebar Widget */
.sidebar-widget {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 1.25rem;
    margin: 1.5rem 1rem;
    border: 1px solid var(--border-color);
}

/* Hide Bottom Nav on PC */
.bottom-nav {
    display: none !important;
}

/* Premium Desktop Banner */
.shadow-premium {
    box-shadow: 0 20px 40px rgba(0,0,0,0.05) !important;
}

[data-theme="dark"] .shadow-premium {
    box-shadow: 0 20px 40px rgba(0,0,0,0.4) !important;
}
