        /* ===== SLIDE-OUT MENU ===== */
        .drawer-me {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 4px 2px 18px;
            border-bottom: 1px solid var(--input-bg);
            margin-bottom: 10px;
        }
        .drawer-me .account-avatar {
            width: 46px;
            height: 46px;
            font-size: 1.05rem;
            margin-bottom: 0;
            flex-shrink: 0;
        }
        .drawer-me-text {
            min-width: 0;
        }
        .drawer-me-name {
            font-size: 0.95rem;
            font-weight: 500;
            color: white;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .drawer-me-session {
            font-size: 0.72rem;
            color: var(--text-secondary);
            font-family: 'Fira Code', monospace;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .drawer-item {
            display: flex;
            align-items: center;
            gap: 14px;
            width: 100%;
            background: transparent;
            border: none;
            color: var(--text-primary);
            padding: 12px 10px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.92rem;
            text-align: left;
            transition: background 0.15s ease;
        }
        .drawer-item:hover {
            background: var(--input-bg);
        }
        .drawer-item.danger {
            color: #f87171;
        }
        .drawer-item.danger:hover {
            background: rgba(239, 68, 68, 0.12);
        }
        .drawer-item-icon {
            font-size: 1.1rem;
            width: 22px;
            text-align: center;
        }
        .drawer-note {
            font-size: 0.72rem;
            color: var(--text-secondary);
            line-height: 1.5;
            padding: 10px;
            margin-top: 4px;
        }

