
    :root {
        --primary-blue: #3B82F6;
        --primary-purple: #8B5CF6;
        --slate-900: #0F172A;
        --slate-700: #334155;
        --slate-600: #475569;
        --slate-300: #CBD5E1;
        --white: #FFFFFF;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 5%;
        background-color: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        border-bottom: 1px solid #1E293B;
        font-family: 'Inter', sans-serif;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white);
        text-decoration: none;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    .nav-links a {
        color: var(--slate-300);
        text-decoration: none;
        font-weight: 500;
        transition: 0.3s;
    }

    .nav-links a:hover {
        color: var(--primary-blue);
    }

    .nav-buttons {
        display: flex;
        gap: 1rem;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        border-radius: 8px;
        font-weight: 500;
        font-size: 0.875rem;
        cursor: pointer;
        transition: 0.3s;
        text-decoration: none;
        color: var(--white);
    }

    .btn-outline {
        background: transparent;
        border: 1px solid var(--slate-600);
        color: var(--slate-300);
    }

    .btn-outline:hover {
        border-color: var(--primary-blue);
        color: var(--primary-blue);
    }

    .btn-primary {
        background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
        border: none;
        color: var(--white);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
    }

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }
        .btn-dashboard{
            display: none;
        }
    }

    /* User Menu Styles */
    .user-menu {
        position: relative;
    }

    .user-btn {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--slate-600);
        padding: 0.5rem 1rem 0.5rem 0.5rem;
        border-radius: 9999px;
        cursor: pointer;
        transition: all 0.2s;
        color: var(--slate-300);
        font-family: inherit;
        font-size: 0.875rem;
    }

    .user-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: var(--slate-300);
        color: var(--white);
    }

    .user-avatar {
        width: 32px;
        height: 32px;
        background: linear-gradient(135deg, var(--primary-blue), var(--primary-purple));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: var(--white);
        font-size: 0.875rem;
    }

    .chevron {
        transition: transform 0.2s;
    }

    .user-btn:hover .chevron {
        transform: translateY(2px);
    }

    .dropdown-menu {
        position: absolute;
        top: calc(100% + 0.5rem);
        right: 0;
        width: 200px;
        background: var(--slate-900);
        border: 1px solid var(--slate-700);
        border-radius: 12px;
        padding: 0.5rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.2s;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
    }

    .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
        color: var(--slate-300);
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.2s;
        font-size: 0.875rem;
    }

    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--white);
    }

    .dropdown-item.danger:hover {
        background: rgba(239, 68, 68, 0.1);
        color: #ef4444;
    }
