        .dash-nav {
            background: white;
            height: 72px !important;
			border-bottom: 1px solid #E4E7EC !important;
        }

        .nav-container {
            display: flex !important;
            justify-content: space-between !important;
            align-items: center !important;
            max-width: 1280px !important;
            margin: 0 auto !important;
            gap: 2rem !important;
        }

        .dash-logo img {
            width	: 195.75px;
        }

        .nav-menu {
            display: flex;
            gap: 2rem;
            list-style: none;
            margin-right: auto;
        }

        .nav-menu a {
            text-decoration: none !important;
            color: #333;
            font-size: 16px;
            transition: color 0.3s;
        }

        .right-section {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .upgrade-btn {
            background: #007bff;
            color: white !important;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            text-decoration: none;
        }

        .user-icon, .settings-icon {
            width: 24px;
            height: 24px;
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .nav-menu, .right-section {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: center;
                padding: 2rem 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                transition: 0.3s;
                gap: 1.5rem;
            }

            .nav-menu.active, .right-section.active {
                right: 0;
            }

            .upgrade-btn {
                margin: 0 auto;
                width: max-content;
            }

            .user-icon, .settings-icon {
                width: 32px;
                height: 32px;
            }
        }