        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
        
        /* Base Styles */
        :root {
            --bg-primary: #faf9fb;               /* Soft lavender white – elegant canvas */
            --bg-secondary: #f2f0f3;             /* Light orchid gray – subtle depth */
            --bg-card: #ffffff;                  /* Crisp white – modern neutral */
            --bg-glass: rgba(50, 10, 50, 0.02);  /* Whisper of magenta – atmospheric layering */
            --border-primary: #e5e1e9;           /* Gentle violet-gray – light structure */
            --border-hover: #cbc4d1;             /* Muted plum-gray – hover hint */
            --text-primary: #231625;             /* Near-black plum – elegant authority */
            --text-secondary: #4b3c4f;           /* Muted raisin – easy on the eyes */
            --text-tertiary: #7c6f85;            /* Desaturated mauve – label & helper tone */
            --accent-primary: #690069;           /* Deep magenta – bold, premium, unique */
            --accent-secondary: #a83279;         /* Plum rose – warm, rich contrast */
            --success: #10b981;
            --warning: #f59e0b;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.07);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.5;
            overflow-x: hidden;
            font-feature-settings: 'cv11', 'ss01';
        }

        .container {
            display: flex;
            min-height: 100vh;
        }

        /* Sidebar */
        .sidebar {
            width: 280px;
            background: var(--bg-secondary);
            backdrop-filter: blur(20px);
            border-right: 1px solid var(--border-primary);
            padding: 20px;
            position: fixed;
            left: 0;
            top: 0;
            height: 100vh;
            z-index: 10;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: 'var(--accent-primary)';
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            color: white;
            box-shadow: var(--shadow-lg);
        }

        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent-primary);
        }

        .create-btn {
            width: 100%;
            background: var(--accent-primary);
            border: none;
            border-radius: 12px;
            padding: 14px 20px;
            color: white;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            margin-bottom: 24px;
            box-shadow: var(--shadow-lg);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .create-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        /* Navigation */
        .nav-sections-container {
            flex: 1;
            overflow: hidden;
            margin-bottom: 12px;
        }

        .nav-section {
            margin-bottom: 24px;
        }

        .nav-title {
            font-size: 11px;
            font-weight: 600;
            color: var(--text-tertiary);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
            padding-left: 16px;
        }

        .nav-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 16px;
            border-radius: 10px;
            cursor: pointer;
            margin-bottom: 2px;
            font-weight: 500;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .nav-item:hover,
        .nav-item.active {
            background: var(--bg-glass);
            color: var(--accent-primary);
        }

        .nav-icon {
            width: 18px;
            height: 18px;
            opacity: 0.8;
            flex-shrink: 0;
        }

        .nav-item:hover .nav-icon,
        .nav-item.active .nav-icon {
            opacity: 1;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 12px;
            width: 100%;
            color: inherit;
            text-decoration: none;
        }

        /* User Profile */
        .user-profile {
            margin-top: auto;
            padding: 16px;
            background: var(--bg-glass);
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .user-profile:hover {
            background: var(--bg-card);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            background: var(--accent-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 16px;
            box-shadow: var(--shadow-sm);
        }

        .user-info {
            flex: 1;
            min-width: 0;
        }

        .user-name {
            font-weight: 600;
            color: var(--text-primary);
            font-size: 14px;
            margin-bottom: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .user-role {
            color: var(--text-tertiary);
            font-size: 12px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .user-menu {
            color: var(--text-tertiary);
            padding: 4px;
            border-radius: 6px;
        }

        /* Main Content */
        .main {
            flex: 1;
            padding: 32px;
            overflow-y: auto;
            background: transparent;
            margin-left: 280px;
        }

        /* Header */
        .header {
            padding: 24px 0;
            border-bottom: 1px solid var(--border-primary);
            margin-bottom: 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header h1 {
            font-size: 32px;
            font-weight: 700;
            color: var(--accent-primary);
            margin: 0;
        }

        .add-team-btn {
            background: var(--accent-primary);
            color: white;
            border: none;
            border-radius: 12px;
            padding: 12px 24px;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .add-team-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        /* Teams Grid */
        .teams-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }

        .team-card {
            background: var(--bg-card);
            border: 1px solid var(--border-primary);
            border-radius: 20px;
            padding: 24px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .team-card:hover {
            transform: translateY(-4px);
            border-color: var(--border-hover);
            box-shadow: var(--shadow-xl);
        }

        .team-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 20px;
        }

        .team-icon {
            width: 48px;
            height: 48px;
            background: var(--accent-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            box-shadow: var(--shadow-md);
        }

        .team-info {
            flex: 1;
        }

        .team-name {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .team-description {
            color: var(--text-tertiary);
            font-size: 14px;
            margin-bottom: 20px;
        }

        .team-members {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 12px;
        }

        .member-card {
            background: var(--bg-glass);
            border-radius: 12px;
            padding: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .member-card:hover {
            background: var(--bg-secondary);
            transform: translateX(4px);
        }

        .member-avatar {
            width: 36px;
            height: 36px;
            background: var(--accent-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 14px;
        }

        .member-info {
            flex: 1;
        }

        .member-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
            margin-bottom: 2px;
        }

        .member-role {
            font-size: 12px;
            color: var(--text-tertiary);
        }

        @media (max-width: 768px) {
            .teams-container {
                grid-template-columns: 1fr;
            }
            
            .team-members {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }

        /* Add these styles in the <style> section */
        .user-dropdown {
            position: absolute;
            bottom: calc(100% + 10px);
            left: 0;
            right: 0;
            background: var(--bg-card);
            border: 1px solid var(--border-primary);
            border-radius: 12px;
            padding: 8px;
            display: none;
            box-shadow: var(--shadow-xl);
            z-index: 1000;
        }

        .user-dropdown.show {
            display: block;
        }

        .user-dropdown::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            width: 12px;
            height: 12px;
            background: var(--bg-card);
            border-right: 1px solid var(--border-primary);
            border-bottom: 1px solid var(--border-primary);
        }

        .user-dropdown-option {
            padding: 10px 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            border-radius: 8px;
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 14px;
            transition: all 0.2s ease;
            text-decoration: none;
        }

        .user-dropdown-option:hover {
            background: var(--bg-glass);
            color: var(--accent-primary);
        }

        .logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}
