        /* ========= TOOLBAR ========= */
        .gm-toolbar {
            background: var(--surface);
            border-bottom: 1px solid var(--border);
            padding: 10px 16px;
            margin-bottom: 20px;
            border-radius: 16px;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .gm-toolbar-inner {
            max-width: 1440px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }
        .gm-toolbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .gm-toolbar-brand svg { color: var(--primary); }
        .gm-toolbar-brand h1 {
            margin: 0;
            font-size: 1.08rem;
            font-weight: 800;
            color: #fff;
        }
        .gm-toolbar-tabs {
            display: flex;
            gap: 6px;
        }
        .gm-tab-btn {
            appearance: none;
            border: none;
            background: transparent;
            color: var(--muted);
            padding: 8px 16px;
            border-radius: 10px;
            font-size: 0.88rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.18s;
        }
        .gm-tab-btn:hover { color: #fff; background: var(--surface-alt); }
        .gm-tab-btn.active { background: var(--primary); color: #fff; }
